Re: [PHP] Run script every 30 seconds



I have a script that I want it to run every 30 seconds, the problem is
that cronjob can run every 1 minute only, do you have any solution ?

Set the script up as a 2 iteration loop with sleep( 30 ) at the end of the first iteration. Or something like that...

thnx,
Chris .