As laserlight suggests, the best way to avoid format problems with dates is to simply let them build the date in pieces; have a dropdown for the month, day, and year elements.
Alternatively, you can manipulate the data if you know for sure which format it's in. Simple example:
list($month, $day, $year) = explode('/', $_POST['date']);