Jump to content

[SOLVED] DIFFERENCE 18 years


crashmaster

Recommended Posts

Hi there,

 

need to check difference between

 

$now = time(); and for ex. $date = ("1990-01-19");      Difference in years...

 

If differnce 18 years its OK, if not -> BAD

 

I did it like this, but its not worK

 

$now = time();
$birthday = strtotime($_POST['year]."-".$_POST['month']."-".$_POST['day']) ;

if ( ($now - $birthdat) < (60*60*24*365*18) ) {
    return TRUE;
} else {
    return FALSE;
}

 

 

When I choose day: 17.01.1990 - its says that is OK, but its not true... This man, whos date 17.01.1990 will have 18 years only tomorrow.... Can comebody Help me ??

Link to comment
https://forums.phpfreaks.com/topic/86349-solved-difference-18-years/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.