View Single Post

  #2 (permalink)  
Old 09-12-2006
Kimmo Laine
 
Posts: n/a
Default Re: evaluate date where > 2 weeks ago

"monomaniac21" <mcyi2mr3@googlemail.com> wrote in message
news:1158061327.515798.194210@e63g2000cwd.googlegr oups.com...
> hi all i have a date on a php page and i need to check if that date (
> in this format : 2006-06-04) is more than 2 weeks ago. How can i do
> this most efficiently?



// This is two weeks ago, as a unix timestamp
$twoweeks = strtotime('-14 days');

// This is your date, as a unix timestamp
$timestamp = strtotime('2006-06-04');

Just add water.

--
"Ohjelmoija on organismi joka muuttaa kofeiinia koodiksi" - lpk
http://outolempi.net/ahdistus/ - Satunnaisesti päivittyvä nettisarjis
spam@outolempi.net || Gedoon-S @ IRCnet || rot13(xvzzb@bhgbyrzcv.arg)


Reply With Quote