Ver Mensaje Individual
  #2 (permalink)  
Antiguo 16/01/2005, 01:35
Avatar de stock
stock
 
Fecha de Ingreso: junio-2004
Ubicación: Monterrey NL
Mensajes: 2.390
Antigüedad: 19 años, 9 meses
Puntos: 53
Código PHP:
echo "<select name=\"tema\">";
$dir="algundir/themes";
    if (
$handle=@opendir("$dir"))
    {
       
       while (
false !== ($file readdir($handle))) 
       {     
          if(
is_dir($dir.$file)){
            echo 
"<option value=\"$file\"> $file </option>";
           }
            
       }
       
closedir($handle); 
    }
echo 
"</select>"
there you GO !!

asi de facil!! bueno, no lo e corrido, pero estoy un 99.9% seguro de que funciona!! claro hay un 0.1% de que no, anyway, suerte

bytes!!