I am trying to show how many records are in each db. I have generated a list of dbs using this:
$result = mysql_query("SHOW tables", $db);
while($row = mysql_fetch_row($result)){
echo $row[0];
}
This works perfectly and I want to add the number of records in each db displayed next to the db name. And I would even like to add a field value if I can. I definitely need some direction on this.
I hope to get the output to look like this:
database 1 - 12 records - updated 1/1/07
database 2 - 3 records - updated 1/2/06
Where currently all I have is:
database 1
database 2
As always, THANKS!