I have a form in PHP. There is a textbox where the user enters a project start date (mm/dd/yyyy). I need to then import this date into mysql but don't know how to convert it to the proper format (yyyy/mm/dd). Can you please help?
Check out http://www.php.net/date - lots and lots of details on how to do this (and probably better examples for exactly what you're doing).
I'd predict you'll need something like date('Y/m/d', strtotime($inputdatefromform))