我目前正在尝试从数据库中的所有表中获取总行数,然后将所有值加在一起。我已经设法获取了所有数据,但不知道如何将它们加在一起。
我已经尝试使用爆炸,爆破和shell_exec之类的功能。他们都没有工作。
这是我的代码:
$result = mysqli_query($mysqli,"show tables from general");
while($table = mysqli_fetch_array($result)) {
$bleh = implode(" ",$table);
$result2 = mysqli_query($mysqli, "SELECT COUNT(*) FROM $bleh");
if (!$result2) {
printf("Error: %s\n", mysqli_error($mysqli));
exit();
}
//This is the part that doesn't work the way I need it to work
while($user = mysqli_fetch_array($result2)) {
echo $user[0];
}
}
当前,它只是将每个表格中的所有行显示为单独的数字。