Hello, I did this program that lists the photos in my directory, but I just wanted to click on the photo list to see the photo on screen with php.
<?php
$path = "C:\FOTOS COOPERADOS 2013";
$diretorio = dir($path);
echo "Lista de Arquivos do diretório '<strong>".$path."</strong>':<br />";
while($arquivo = $diretorio -> read()){
echo "<a href='".$path.$arquivo."'>".$arquivo."</a><br />";
}
$diretorio -> close();
?>