倒数计时器由MySQL数据决定

时间:2012-02-22 20:22:33

标签: php mysql ajax countdowntimer

如何使用AJAX创建使用MySQL和PHP的动态倒数计时器?

这是我的PHP脚本的缩放版本,它与我的MySQL数据库交互,但是如何在不刷新页面的情况下将其转换为倒计时?

<?php
      $con = mysql_connect("database-server","username","password");

      mysql_select_db("database", $con);

      $sql = mysql_query("SELECT TIMEDIFF(example_finish, NOW()) FROM example;");

      echo "<table>
      <tr>
           <th>COUNTDOWN_TIMER</th>
      </tr>";

      while($row = mysql_fetch_array($sql))
      { 
           echo "<tr>";
           echo "<td>" . $row["TIMEDIFF(example_finish, NOW())"] . "</td>";
           echo "</tr>";
      }

      echo "</table>";

      mysql_close($con);
?>

任何帮助或指示将不胜感激。谢谢。 :)

1 个答案:

答案 0 :(得分:1)

根据您的描述,我不认为您需要轮询数据库,然后设置初始倒计时时间。

我找到了this link to various implementations of countdown timers