I currently have a form that asks for each of these in separate dropdowns.
Day | Month | Year
When I am inserting into the database, I perform the following but all it inserts is 00-00-0000.
$_POST['date'] = $_POST['dob_day'].'-'.$_POST['dob_month'].'-'.$_POST['dob_year'];
//I then do my insert and I'm inserting this..
mysql_real_escape_string($_POST['date'])
What seems to be the issue?