Dynadot โ€” .com Registration $8.99

PHP & MySQL (UPDATE statement)

Spaceship Spaceship
Watch
Impact
15
Hello guys!

I'm currently working on a script that should empty a field in a database every 24h.

PHP:
list($hour, $minute, $second) = explode(":", date("H:i:s", time()));
$empty = "";
if( (intval($hour) == 0) && (intval($minute) == 0) && (intval($second) == 0) ){
	mysql_query("UPDATE `contest` SET 24h_ips='".$empty."' ");
}

The problem is that I thought it will execute even if no one accesses the page (@ 00:00:00), but it seems that I was wrong.... In order to execute someone has to access the page in that precise moment....

Is there some way to make it execute even if no one accesses the page at that time?

Thanks a lot,
Vlad
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
What you need is cron job to schedule that task.
 
0
•••
Thanks, I've managed to set one up :)
 
0
•••
Unstoppable Domains
Domain Recover
DomainEasy โ€” Live Options
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back