Ver Mensaje Individual
  #7 (permalink)  
Antiguo 28/08/2005, 12:54
edcala
 
Fecha de Ingreso: diciembre-2004
Mensajes: 207
Antigüedad: 19 años, 3 meses
Puntos: 0
intenté hacerlo en un array, y no me funciona. Que está mal?
Código PHP:
<?php 
if ($gestor opendir('galerias/localCQFPpasado/images')) {
$archivo = array(false !== ($archivo readdir($gestor)));
sort($archivo);
reset($archivo);
    while (
$archivo) { 
        if (
$archivo != "." && $archivo != "..") { 
            echo 
"$archivo\n"
        } 
    } 
    
closedir($gestor); 

?>