Create select tag with month value in PHP

Description

The following code shows how to create select tag with month value.

Example


<?/*w w  w  . j av a2s. com*/
$months = array(1 => 'January', 2 => 'February', 3 => 'March', 4 => 'April', 
                5 => 'May', 6 => 'June', 7 => 'July', 8 => 'August',
                9 => 'September', 10 => 'October', 11 => 'November', 
                12 => 'December');

print '<select name="day">';

for ($i = 1; $i <= 31; $i++) {
    print '<option value="' . $i . '">' . $i ."</option>\n";
}
print "</select> \n";
?>

The code above generates the following result.

Create select tag with month value in PHP




















Home »
  PHP Tutorial »
    Form »




PHP Form
Form Demo