所以我有一个网站,我正在尝试显示mySQL服务器的最后更新时间,我已经环顾四周但仍然遇到问题。这是我的代码
$sql = 'SHOW TABLE STATUS FROM alumni LIKE "alumni_data"';
$tableStatus = mysqli_query($link, $sql);
if (!$tableStatus) {
$error = 'Error getting update status: ' . mysqli_error($link);
include 'error.html.php';
exit();
}
while ($array = mysqli_fetch_array($tableStatus)) {
$updatetime = $array['Update_time'];
}
echo '<center>Last Updated: ' . $updatetime . '</center>';
什么都没有打印出来,就像它从未找到更新时间一样。我手动输入了该查询,所以我很确定它有效。
由于