I have this code:
<title>
</title>
<meta http-equiv="refresh" content="10">
</head>
<body>
<?php
$hour = 18;
$minute = 00;
if(date('H')==$hour AND date('i')==$minute) {
echo "it's 18 hours";
}
$hour = 18;
$minute = 05;
if(date('H')==$hour AND date('i')==$minute) {
echo "it's 18:05";
}
?>
but it erase the previous information when it's not their time
The use is to coment a game in real time
thanks