ah, subtle difference.
but list_tables doesn't give me any advantage over what I am doing...still listing rows from the db as
while ($row = mysql_fetch_row($result)) {
print "Table: $row[0]\n";
}
which is the same way I do it now with sql that says show tables.
I still need some way of ordering the list that is returned.