我試圖顯示總數沒有。行數每5秒異步一次。我創建了一個頁面來獲取行數。但是,想要更新計數而不重新加載頁面。如何異步更新Mysql的行數?
的index.php
<?php
$con = mysqli_connect("localhost", "root", "pswd", "db_pswd");
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$sql="SELECT * FROM tweets;
if ($result=mysqli_query($con,$sql))
{
$rowcount=mysqli_num_rows($result);
echo $rowcount;
mysqli_free_result($result);
}
不知道如何進行下一步。需要一些幫助來實現這一點!
AJAX和定時器會幫助你.... – user1844933
有n o需要獲取所有表格內容以便對其中的行進行計數。使用'SELECT COUNT(*)FROM tweets',它將返回表中包含* count *行的結果中的一行。 – poncha
@ user1844933:有些代碼會更有幫助 – user3289108