Adam Green
Twitter API Consultant
adam@140dev.com
781-879-2960
@140dev

Free Source Code – Twitter Database Server: db_test.php

Once you install the Twitter database server you can run this script from a web browser to make sure everything is working.
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