crashmaster Posted January 16, 2008 Share Posted January 16, 2008 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 More sharing options...
revraz Posted January 16, 2008 Share Posted January 16, 2008 http://www.phpfreaks.com/forums/index.php/topic,177408.0.html Link to comment https://forums.phpfreaks.com/topic/86349-solved-difference-18-years/#findComment-441221 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.