With which php code can i have the result of the query "STATUS"?
Tried with this except that i have asked only for "STATUS" and not "SHOW TABLES" but don't work........
mysql_select_db("foobar");
$query = "show tables";
$result = mysql_query($query);
$num_results = mysql_num_rows($result);
print "There are $num_results tables.<br>";
for ($i = 0; $i < $num_results; $i++)
{
$row = mysql_fetch_array($result);
print "table " . $row[0] . " exists.<br>";
}