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?
|
Continuing from my earlier question, how can I combine the month, day, and year
|
|||
|
|
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:
|
|||
|
|
|
Combine it in your PHP script, there is no reason to add a dependency on JavaScript for this. Build on things that work. Additionally, if you do it on the server, it will not be subject to as much potential malicious or accidental interference. |
|||
|
|
The point of collecting this data separately is to ensure its format is correct. If you submit a complete date to your php script, the validation options for the php script are much more involved. Better to submit the 3 form fields, validate them the easy way and then create the date in php. If you insist on submitting a complete date, a hidden field (as @kgb says) is probably the easiest way. |
|||
|
|
|
If you do the following you can get the result you are looking for.
The resultant
Then all you need to do is |
|||
|
|
If you want to do this I suggest you take the following steps:
When the form is submit, since the I've actually written a widget like this before... I'll try to get a demo page up and link to it. |
|||
|
|
|
You could either use javascript or php itself to do this, but there's no native xhtml means by which this is possible (so far as I'm aware). If you use javascript to effect this (using hidden fields to submit the data to your php script) you'll still have to verify the field on the server-side before using php to process or insert the data to the database. For that reason I'm going to skip over the javascript option, and go straight for the php approach that I'd use. I'm assuming numerical data of the form dd for day, mm for month and yyyy for year:
Use |
|||
|
|
|
I noticed from your original post that you are using the If you want to verify the format when it gets to PHP, use
|
|||||
|