Free Source Code – Twitter Database Server: db_test.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_test.php * Use this script to test your database installation * * 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 */ require_once('db_lib.php'); $oDB = new db; print '<strong>Twitter Database Tables</strong><br />'; $result = $oDB->select('SHOW TABLES'); while ($row = mysqli_fetch_row($result)) { print $row[0] . '<br />'; } ?> |
streaming_framework