PD: Si quieren visualizarlo copien y peguen el codigo en un archivo .php no .html eso espero buenas respuestas gracias.
Código HTML:
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title></title> </head> <body> <div style="margin:auto; width:623px; border:solid #000000"> <div style="margin:auto; width:330px;"> <form action="meses.php" method="post"> <? echo"<select name='mes'>"; $mes = array("enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","noviembre","diciembre"); foreach($mes as $valor){ echo "<option value=0>$valor</option>"; } echo"</select>"; ?> </form> </div> </div> </body> </html>