Continuing from my earlier question, how can I combine the month, day, and year <select>s into a single “date” value, so that it arrives at my PHP script as
$_POST['date'], in MySQL format YYYY-MM-DD?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could use a hidden field and build its value onSubmit, but if I were you, I’d simply use the array notation in the name attribute, and implode the array with ‘-‘ as glue : like this
php: