Código PHP:
$d = dir("Oscar/CARPETA COMPARTIDA/Clientes/");
echo "<ul>";
while (false !== ($entrada = $d->read())) {
if (strpos($entrada, '.') === false){
echo $entrada;
}
}
Oscar es el nombre del servidor y yo necesito el listado de la carpeta clientes,
Warning: dir(Oscar/CARPETA COMPARTIDA/Clientes) [function.dir]: failed to open dir: Invalid argument in C:\Servidor\web\pruebas_php\index.php on line 40
Fatal error: Call to a member function read() on a non-object in C:\Servidor\web\pruebas_php\index.php on line 42
Alguien alguna ves lo a realizado???