Hey there.
Im needing the information from three dropdowns put into on colum if you like.
Its for a tourdate section on my site, and i havd three dropdowns d1, d2, d3 which contain info for the dates ie Days Months Years.
I tried to do it through a hidden field:
<input name="ddate" type="hidden" value="<?php echo $HTTP_POST_VARS['d1']; ?>-<?php echo $HTTP_POST_VARS['d2']; ?>-<?php echo $HTTP_POST_VARS['d3']; ?>">
But that didnt work.
How can i do this?
ALSO: When i inputted the info manualy, the order of the dates went wrong. Origionaly i had it in MM/DD/YY format, but the dates for the year 04, were showing up as having been past!
How do i correct this? Im now using MM-DD-YYYY.
Thanks in advance!
Danny