hi.
im trying those combo boxes. but i noticed that when i test it, the items in the list are all enclosed in double quotes. is there a way to remove these?
here's the code:
<select name="month" id="month">
<?php
$x = 1;
while ($x <= 12) {
$mo = getmonth($x);
?>
<option value="<?php echo "$mo"?>"><?php echo "$mo"?></option>
<?php
$x++;
}
?>
</select>
<select name="day" id="day">
</select>
<select name="year" id="year">
</select>