Re: [PHP] Re: shedule a php script

2004-06-05 Thread CurlyBraces Technologies \( Pvt \) Ltd
Sent: Saturday, June 05, 2004 10:49 PM Subject: Re: [PHP] Re: shedule a php script > Thomas Seifert wrote: > > I would recommend the cronjob too but if you want to just keep the script running, do a while-loop around your code, i.e. > > > > while(1) { >

Re: [PHP] Re: shedule a php script

2004-06-05 Thread Marek Kilimajer
Thomas Seifert wrote: I would recommend the cronjob too but if you want to just keep the script running, do a while-loop around your code, i.e. while(1) { ... your code sleep(120); // sleep 120 seconds } --- the require should be outside of the loop IMHO ;). Or if you want to run the script fr

Re: [PHP] Re: shedule a php script/ plz help

2004-06-05 Thread Ben Ramsey
I've got to run, so I don't have time to reply to this. I am instead posting it to the list so that others may help you. In the future, keep your posts on the list so that others can benefit or help you. :-) CurlyBraces Technologies ( Pvt ) Ltd wrote: yes, i did as u said .., i ha