I have a jquery calendar that sets the input value to MM/DD/YYYY
How would I convert it so that my database column (date) can accept it correctly?
EDIT
I will suggest to use strtotime() function and then date(). By this you can convert any format of date.
strtotime()
date()
$unix_time_stamp = strtotime($mm_dd_yyyy); $yyyy_mm_dd = date(Y/m/d,$unix_timestamp);