Hi,
I've found this code to display a date in one field.
works fine but it displays "2010, 08, 21"
Is it possible to make it "20100821", so remove the commas and white space?
I've found this code to display a date in one field.
works fine but it displays "2010, 08, 21"
Is it possible to make it "20100821", so remove the commas and white space?
<select name="date[]" id="year">
<option>2010</option>
<option>2011</option>
</select>
<select name="date[]" id="month">
<option>08</option>
<option>09</option>
</select>
<select name="date[]" id="day">
<option>21</option>
<option>22</option>
</select>
<input type="submit">