✔ 最佳答案
請注意,我有將所有"<"這個符號,改成全形,若要使用,全部取代即可!
<form id="form1" name="form1" method="post" action="">
<label>
<select name="select" id="select">
<?php
$year = 1990 ;
while($year<=2020){
echo "<option value=".$year.">".$year."</option>" ;
$year++ ;
}
?>
</select>年
</label>
<select name="select2" id="select2">
<?php
$mary = array(1,2,3,4,5,6,7,8,9,10,11,12) ;
foreach($mary as $mval){
echo "<option value=".$mval.">".$mval."</option>" ;
}
?>
</select>月
<select name="select3" id="select3">
<?php
for($i=1;$i<=31;$i++){
echo "<option value=".$i.">".$i."</option>" ;
}
?>
</select>日
<select name="select4" id="select4">
<?php
$hary = array(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24) ;
while (list($hkey, $hval)=each($hary)){
echo "<option value=".$hval.">".$hval."</option>" ;
}
?>
</select>時
</form>
因為你的圖片,有點太小了,放大就會失真,所以字實在看得有點模模糊糊,不曉得這樣是否是你要的結果?