01.
<html>
02.
<body>
03.
<?php
04.
$a_month
[1]=
'มกราคม'
;
05.
$a_month
[2]=
'กุมภาพันธ์'
;
06.
$a_month
[3]=
'มีนาคม'
;
07.
$a_month
[4]=
'เมษายน'
;
08.
$a_month
[5]=
'พฤษภาคม'
;
09.
$a_month
[6]=
'มิถุนายน'
;
10.
$a_month
[7]=
'กรกฎาคม'
;
11.
$a_month
[8]=
'สิงหาคม'
;
12.
$a_month
[9]=
'กันยายน '
;
13.
$a_month
[10]=
'ตุลาคม'
;
14.
$a_month
[11]=
'พฤศจิกายน'
;
15.
$a_month
[12]=
'ธันวาคม'
;
16.
17.
?>
18.
19.
<select name=
"m"
>
20.
<?php
for
(
$i
=1;
$i
<=12;
$i
++) { ?>
21.
22.
<option value=
"<?php echo $i;?>"
><?php
echo
$a_month
[
$i
];?></option>
23.
<?php }
24.
25.
?>
26.
</select>
27.
28.
</body>
29.
</html>