Just wondering, can I do this to validate that a user has entered a date over 18?
//Validate for users over 18 only function time($then, $min) { $then =
if( strtotime("1988/03/23") < (time() - (18 * 60 * 60 * 24 * 365))) { print "yes"; } else { print "no"; }
...not accounting for leaps years however