PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
hi..
i was wondering, how do i make a timer that execute an update every X minutes..
i have tried something very lame.. a script that will update once in 5 minutes.
<?
$d=date("i");
if (eregi(5, $d))
{
#script content
}
?>
the problem is.. it wont "auto update", because i have to click on the file in order to update..
i hope you understood me.. thanks for everyone who helps.