hello i have a field in mysql that is datetime format. if i use datepicker to select a date it dosen't pass the time. is there a way to use a format for example: dd/mm/yy H:m:s
i have included the code i am using and would be grateful for any help.
many thanks
<SCRIPT type=text/javascript>
$(function() {
$("#datepicker").datepicker({
changeMonth: true,
changeYear: true,
yearRange: '2010:2030',
dateFormat: 'dd/mm/yy',
minDate: 0,
defaultDate: null
});
});
</SCRIPT>