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