Hello,
No problem showing of table names.
How do I show the total number of rows?
[php]
<?php $result = $mysqlibag->query("show tables"); while($table = $result->fetch_array()) { $num_fields = $result->field_count; echo "Table name:".$table[0]." Rows:".$num_fields.""; } ?>
[/php]
Best Regards