Codice PHP:
<?php
$HTML 
"<table><tr>" ;
$path"foto";
$n_foto_per_righe ;
if (
is_dir("$path"))
{
    
$handle=opendir($path);
    
$i ;
    while (
false!==($file readdir($handle)))
    {
        if (
$file != "." && $file != "..")
        {
            
$HTML .= "<td><img src=\"".$path."/".$file."\"></td>";
            if ( 
$i == $n_foto_per_righe )
           {
               
$HTML .= '</tr><tr>' ;
               
$i $n_foto_per_righe ;
           }
        }
        
$i ++ ;
    }
    
closedir($handle);
}
$HTML .= "</tr></table>";
echo 
$HTML ;
?>