John Taylor-Johnston wrote:
$mydata->lastinsalled = "2004-05";
take a good look at mktime();
How can I determne if $mydata->lastinsalled is one year or more older
than the current $date("l-m");
Anyting simple and over looked? I have been browsing the manual::
http://ca.php.net/manual/en/f
is it possible for $mydata->lastinsalled to have -MM-DD format? ie:
2004-05-31
you can use strtotime to convert it to unix timestamp to
compare...something like this:
$stamp = strtotime('2004-06-31'); // $mydata->lastinsalled
if($stamp >= strtotime('1 year ago'))
{
echo 'less than 1 y
$mydata->lastinsalled = "2004-05";
How can I determne if $mydata->lastinsalled is one year or more older
than the current $date("l-m");
Anyting simple and over looked? I have been browsing the manual::
http://ca.php.net/manual/en/function.strtotime.php
http://ca.php.net/manual/en/function.date
3 matches
Mail list logo