RE: [PHP] Require some help about the date comparison

2002-07-17 Thread Manisha
Thanks to all who responded me. Actually I got confused after seeing so many commands but finally got it correct from u guys. Thanks once again. Manisha -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Require some help about the date comparison

2002-07-17 Thread John Holmes
> I want to display some text on web. This text should appear for limited > period e.g from 20th July 12pm till 25th July 3pm. After 25th July 3pm the > text should disappear from screen. $start && $now < $end) { //display text } else { //text expired } ?> Something like that. You can use strto

Re: [PHP] Require some help about the date comparison

2002-07-17 Thread Andrey Hristov
CTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 17, 2002 9:55 AM Subject: [PHP] Require some help about the date comparison > I am writing one program - > > I want to display some text on web. This text should appear for limited > period e.g from 20th July 12pm till 25t

Re: [PHP] Require some help about the date comparison

2002-07-17 Thread Jason Wong
On Wednesday 17 July 2002 14:55, Manisha wrote: > I am writing one program - > > I want to display some text on web. This text should appear for limited > period e.g from 20th July 12pm till 25th July 3pm. After 25th July 3pm the > text should disappear from screen. > > I tried to look for date co

[PHP] Require some help about the date comparison

2002-07-16 Thread Manisha
I am writing one program - I want to display some text on web. This text should appear for limited period e.g from 20th July 12pm till 25th July 3pm. After 25th July 3pm the text should disappear from screen. I tried to look for date comparison / string conversion to date etc, I got lot info