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?
regards
marc
|
Newbie Member
|
|
| 5Oct2006,21:31 | #2 |
|
if $date is the variable holing the date. Do the following
Code:
<?php
$timestamp=strtotime($date);//makes a timestamp from the date sting.
$twoweeks = mktime(0, 0, 0, date("m"), date("d")-14, date("Y"));//Gets the timestamp for 14 days ago
if ($timestamp<$twoweeks)//if the date is over two weeks ago
.....
Last edited by dux; 5Oct2006 at 21:46.. |
|
Newbie Member
|
|
| 6Oct2006,10:26 | #3 |
|
The problem is already solved but anyways thanks for the help and I am looking forward to some more help in the near future in PHP as I am moving on with the language
|
