我有一個HTML網站,使用PHP代碼查詢MySQL數據庫的網頁。該表包含3列(日期,時間,剩餘)。根據當前日期和時間,我希望HTML頁面能夠返回並顯示「剩餘」列中的相應值。更新「數量剩餘」,而不刷新網站
訣竅是我想這個值自動更新(AJAX?),而用戶不必刷新頁面或單擊按鈕。
我到目前爲止的PHP的工作原理是它顯示基於日期的「剩餘」值,但我還沒有想出如何查詢日期和時間以及自動刷新。提前
<?php
include 'quantitytest_config.php';
//connection to the database
$dbhandle = mysql_connect($hostname, $username, $password)
or die("Unable to connect to MySQL");
//select a database to work with
$selected = mysql_select_db("grace59_countdown",$dbhandle)
or die("Could not select countdown");
//execute the SQL query and return records
$result = mysql_query("SELECT remaining FROM quantity WHERE salesdate=CURDATE()");
//fetch tha data from the database
while ($row = mysql_fetch_array($result)) {
echo "Quantity:".$row{'remaining'}."<br>";
}
//close the connection
mysql_close($dbhandle);
?>
感謝您的幫助:
PHP代碼我想通了,到目前爲止
(quantitytest_config.php
只包含主機名/用戶名/密碼注)。非常感激。
最簡單的方法就是學習AJAX :-) – raidenace