"; // Selecting database mysql_select_db($database) or die('Could not select database'); print "Selected database successfully!
"; // Listing tables in you database $query = 'SHOW TABLES'; $result = mysql_query($query) or die('Show tables failed: ' . mysql_error()); print "The tables in ".$database." database are:
"; // Printing table names in HTML print ""; // Free result mysql_free_result($result); // Closing connection mysql_close($dbcon); ?>