12345678910111213141516171819202122232425262728 |
- <?php
- # Fill our vars and run on cli
- # $ php -f db-connect-test.php
- $dbname = 'testfromphp';
- $dbuser = 'testfromphp';
- $dbpass = 'NGy5LQwHVdNr0ZLB0NWq7KEVwAJyzhnC';
- $dbhost = 'mysqltest';
- $connect = mysql_connect($dbhost, $dbuser, $dbpass) or die("Unable to Connect to '$dbhost'");
- mysql_select_db($dbname) or die("Could not open the db '$dbname'");
- $test_query = "SHOW TABLES FROM $dbname";
- $result = mysql_query($test_query);
- $tblCnt = 0;
- while($tbl = mysql_fetch_array($result)) {
- $tblCnt++;
- #echo $tbl[0]."<br />\n";
- }
- if (!$tblCnt) {
- echo "There are no tables<br />\n";
- } else {
- echo "There are $tblCnt tables<br />\n";
- }
|