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
assign the date values to variable $d
$d
$dob denotes the date which you wish to convert
$dob
$d= date('Y-m-d',strtotime ($dob) );