I would like to print all the months inside a select tag. Can you point out where I went wrong
<select>
<?php
$array=array("January","February","March","April","May","June","July","August","September","October","November","December");
for($i=$array[0];$i<=$array[11];$i++)
{
echo "<option>$i</option>";
}
?>
</select>