Hi all.
I have a form with a feild that when clicked on pops up a calendar which I can select a date I wnat to insert into the field.
The date inserted displays "03 Apr, 2007". I want to store that date in a date field in my MYSQL data table, a field named "f_date" set to date type.
When I save the record the data field "f_date" displays "0000-00-00" which I take it the date input is not getting inserted to the table.
My insert field code is
<input name="f_date" type="text" class="bodytext" id="f_date" onclick='scwShow(this,this);' value="" size="15" />
Is there a way I can format the date input into the correct format.
many thanks