我不知道该怎么做。从我在这里找到的答案来看,我认为也许可以使用 jquery/ajax。我需要获取变量 $i 的值并在顶部回显它,但它必须通过我的逻辑才能获得该值。这是我的代码:
echo "<div id='records'><h1 align='center'>Today's Transfers (" . $i . ") </h1>
<table cellspacing='0' cellpadding='0'>
<tr>
<th>Customer Name</th><th>Phone Number</th><th>Disposition</th><th>User</th><th>Date Called</th>
</tr>
";
$i=0;
$sql = "SELECT * FROM vicidial_closer_log WHERE DATE(call_date) = DATE(NOW()) ORDER BY call_date DESC";
$result = mysqli_query($link, $sql, MYSQLI_STORE_RESULT);
while($row = $result->fetch_assoc()){
$i++;
$phone_number = $row['phone_number'];
$lead_id = $row['lead_id'];
$disposition = $row['status'];
...then echo those variable in my columns and rows...
}
echo "</table> </div>";
echo $i;
也许还有另一种方法来编写我的代码,这样逻辑就在我输出所有内容之前出现?不知道该怎么做,因为我使用的是 mysql 查询。