I have this code, which takes a date entered into a form mm/dd/yy and converts it to an acceptable mysql date format, however any date with a year prior to 1970 fails. Here's the code:
$convdate = strtotime("$formDate");
$intDate = date("Y-m-d H:i","$convdate");
Any help is appreciated.