Free Source Code – Twitter Database Server: db_config.php
Twitter Database Server
Download
Install
Code Architecture
MySQL Database Schema
Phirehose Library
140dev_config.php
db_config.php
db_lib.php
db_test.php
get_tweets.php
monitor_tweets.php
parse_tweets.php
Twitter Display
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | <?php /** * db_config.php * MySQL connection parameters for 140dev Twitter database server * Fill in these values for your database * Latest copy of this code: http://140dev.com/free-twitter-api-source-code-library/ * @author Adam Green <140dev@gmail.com> * @license GNU Public License * @version BETA 0.30 */ $db_host = 'localhost'; $db_user = '*****'; $db_password = '*****'; $db_name = '*****'; // MySQL time zone setting to normalize dates define('TIME_ZONE','America/New_York'); ?> |
streaming_framework