Have a form where a user inputs 3 different fields
ex : <input size="1" maxlength=2 name="month" >/<input size="1" maxlength=2 name="day"> /<input size="1" maxlength=2 name="year">
I want to take these 3 fields and input them into my mysql database as a date.
$fulldate = date("Y-m-d",strtotime(???));
Does anyone know how to combine these 3 fields and format as a date?
Thanks!