Ver Mensaje Individual
  #6 (permalink)  
Antiguo 19/08/2005, 13:21
Avatar de claudiovega
claudiovega
 
Fecha de Ingreso: octubre-2003
Ubicación: Puerto Montt
Mensajes: 3.667
Antigüedad: 20 años, 6 meses
Puntos: 11
Código PHP:
<select name="nose">
<?php
   $fp
=fopen("ruta/archivo.txt","r");
   
$textoarchivo=file($fp);
   foreach (
$textoarchivo as $linea)
   {
      
$datos=explode("|",$linea);
?>
<option value="<?php echo $datos[0];?>"><?php echo $datos[1];?></option>
<?php
   
}    
   
fclose($fp);
?>
</select>