Skip to content

Instantly share code, notes, and snippets.

@farindra
Last active June 14, 2016 06:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farindra/d56ee7a131fb852b8ad35370c16fafbf to your computer and use it in GitHub Desktop.
Save farindra/d56ee7a131fb852b8ad35370c16fafbf to your computer and use it in GitHub Desktop.
Mysql Database Connection Tester
<?php
#Ard Mysql DB Tester Ver. 1.0 By Eka
#https://gist.github.com/farindra/d56ee7a131fb852b8ad35370c16fafbf
$dbname = 'db';
$dbuser = 'user';
$dbpass = 'pass';
$dbhost = 'localhost';
$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;
echo 'Ard Mysql DB Tester Ver. 1.0'."<br />\n";
echo '===================================='."<br />\n"."<br />\n";
while($tbl = mysql_fetch_array($result)) {
$tblCnt++;
echo $tbl[0]."<br />\n";
}
if (!$tblCnt) {
echo "There are no tables<br />\n";
} else {
echo '===================================='."<br />\n"."<br />\n";
echo "There are $tblCnt tables<br />\n";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment