Ver Mensaje Individual
  #2 (permalink)  
Antiguo 07/07/2006, 11:37
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola Greco2

A ver si te funciona así:
Código PHP:
$txt file('secciones.txt');
echo 
'<select name="secccion">';
for (
$i=0$i<strlen($txt); $i++)
  echo 
'<option>'.$txt[$i].'</option>';
echo 
'</select>'
Saludos,