[PHP] Re: on specific time in the month do script!!

2003-08-14 Thread Nabil
No i think you get me wrong ... i have already in my web page some articles that i don't want to desplay on the first and second of every month at a specific hours... Please comment "Nabil" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > HI all; > how can i run somthing or a functi

Re: [PHP] Re: on specific time in the month do script!!

2003-08-14 Thread Jason Wong
On Thursday 07 August 2003 17:35, Nabil wrote: > No i think you get me wrong ... > i have already in my web page some articles that i don't want to desplay on > the first and second of every month at a specific hours... Have you looked at the "Date and Time functions"? -- Jason Wong -> Gremlins

Re: [PHP] Re: on specific time in the month do script!!

2003-08-14 Thread Justin French
Specific Day: 2) { // show } else { // don't show } ?> Addition of specific time frame of 12noon - 4pm 2) && ($hour >= 12 && $hour <= 16) ) { // show } else { // don't show } ?> Tweak to suit your nee

[PHP] Re: on specific time in the month do script!!

2003-08-07 Thread Bobby Patel
look into executing your php script through cron. (Cron is a Unix schedular and nothing to do with PHP). Or you can use Tash Schedular (on windows servers, I guess). Also, check the archives but I think this issue was answered as above. "Nabil" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PRO