Forum Moderators: coopster
I have a form, table, the form has a field called 'Appointment Date' with a name of 'appointment'
The table has a column of date_made with a date datatype.
My php look like this;
INSERT INTO `tblappointments`... VALUES ( '.$_REQUEST['date'].', ...');
When I look at the db all I see is 0000-00-00 and not the entered date.
The date entered is in the format YYYY-MM-DD.
Please help me....