I have a date (\"mm/dd/yyyy\") and I want to convert it to a MySQL DATE data type (like yyyy-mm-dd)
How do I do it with PHP?
If your date is in $your_date, then:
$your_date
$mysql_date = date('Y-m-d', strtotime($your_date));
See strtotime() documentation.