![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
06/05/2004, 13:01
|
![Avatar de autonotel](http://static.forosdelweb.com/customavatars/avatar35233_1.gif) | | | Fecha de Ingreso: junio-2003 Ubicación: Vigo
Mensajes: 480
Antigüedad: 21 años, 8 meses Puntos: 13 | |
por fin!! . al final me quedó así.
<form method="POST" action="otra.php">
<select size="7" multiple name="meses[]" >
<option value="enero" selected>enero</option>
<option value="febrero">febrero</option>
<option value="marzo">marzo</option>
<option value="abril">abril</option>
</select>
<input type="submit" value="enviar">
--------pagotra.php--------------
<?
if (is_array($meses)){
foreach ($meses as $value){
echo ''.$value.'<br>';
}
}
?>
ahora me voy a divertir buscando la forma de convertir esos resultados en variables. quizá tenga q volver. jeje. Muchas gracias |