Thats the command I was thinking of

Thanks
I put in this code though but once again, no output. Remembering the last time I had no output, I tried this with mysql_fetch_arrow and mysql_fetch array but still no output comes on the site. any ideas?
<?php
$query="SHOW TABLE STATUS LIKE 'tablename'";
$result=mysql_query($query);
while($row=mysql_fetch_row($result))
{
echo "<br><br> Table Name:". $row[Name] ."<br />";
}
?>