My question is fairly simple as I am quite new to dynamic coding languages.
Basically, I want to add a new table row to my table, every 24 hours. The new table row should be added at 00:00 every day and the table data is going to be a pre-set variable which isn't an issue.
HERE IS THE CODE :
<?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>