24/03/2010, 15:01
|
| | Fecha de Ingreso: noviembre-2008
Mensajes: 6
Antigüedad: 16 años Puntos: 0 | |
Respuesta: Leer archivos de una carpeta en html Hola !
Si puedes hacerlo mediante php localmente con easyphp instalado....
<?php
if ($handle = opendir('C:/')) {
//echo "Directory handle: $handle\n";
//echo "Files:\n";
/* This is the correct way to loop over the directory. */
while (false !== ($file = readdir($handle))) {
echo "$file";
echo "<br>";
}
closedir($handle);
}
?> |