每24小时添加一个新表行

时间:2015-06-03 10:54:33

标签: php html html-table row

我的问题很简单,因为我对动态编码语言很陌生。

基本上,我想每24小时在表格中添加一个新的表格行。新表格行应该在每天00:00添加,表格数据将是一个预先设定的变量,这不是一个问题。

这是代码:



<?php

$test="London"

?>



<table width"100%">

  <tr>
    <th width="30%">From</th>
    <th width="30%">Player</th>		
    <th width="40%">Price</th>
  </tr>

  <tr>
    <td><?php echo $test ?></td>
    <td></br></td>    
    <td></br></td>
  </tr>

 

</table>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:2)

如果这是在基于Unix的服务器上,则需要使用名为crontab的工具。在连接到服务器的终端中键入crontab -e并输入:

0 0 * * * php /path/to/script.php

然后保存文件。在此示例中,script.php是添加新行的文件。

crontab文件的结构如下:

minute hour date month day command

因此,在示例中,这发生在第0分钟,第0小时,每个日期,月份和日期。