Jonas Geiregat wrote:
>
> I have a date ex 24/08/02
> and I need to see if that date is the same date as it is today (only one
> month later) but 5day's in advanced => that would be 24/09/02
> so if(date == date now - 5)
> {true}
> else{false}
>
> how can I do this right ?Look at the online docs and read up on date() and strtotime() which can accept things like (today - 5days) as arguments. Jc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

