Is there any timer like component in php? I want to repeat particular event at particular time interval how can i do it using php? Please help me regarding this
you have to setup cron job for this.It repeat the particular script after a time interval defined by you
you don't need to use cron for this, though it is probably better to do you can also just use a combination of set_time_limit(0); time() and date(), a while loop and sleep() I used this for a script of mine where I had to let the `game tick on` every half hour and wanted to use something different than cron