So I simply wrote a few lines of code to achieve the above requirements
Execution results:
Copy code The code is as follows:
$conn=mysql_connect('localhost','root','');
mysql_select_db('database',$conn);
$sql="SELECT information_schema.TABLES.TABLE_NAME FROM information_schema. TABLES WHERE table_schema = 'database'";
$res=mysql_query($sql);
while ($result = mysql_fetch_assoc($res) ) {
$tables[]=$result['TABLE_NAME'];
};
echo "
< ;td>Table name
Data volume |
";
foreach ($tables as $k=>$v) {
$sql_count="select count(id) AS nums,'".$v."' from ".$tables[$k];
$res_count=mysql_query($sql_count);
$ result_count = mysql_fetch_assoc($res_count);
echo "".$result_count[$v].' | '.$result_count['nums']. ' |
';
}
echo "
"
?>
http://www.bkjia.com/PHPjc/325888.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/325888.htmlTechArticleSo I simply wrote a few lines of code to achieve the above requirements and the execution results: Copy the code as follows: ?php $ conn=mysql_connect('localhost','root',''); mysql_select_db('database',...