Anyone see whats wrong with this?
$tables = mysql_list_tables($mysql_db_name);
while (list($tbl)=mysql_fetch_array($tables))
{
$fields = mysql_list_fields($mysql_db_name, $tbl);
echo "<br>.....$tbl <br>";
if (list($fld)=mysql_fetch_array($fields))
{
echo ".........$fld <br>";
}
}
The tables display but the fields don't display at all.
Thanks in advance