Galleria
$path = "./disegni";
$dh = opendir($path);
while (false !== ($filename = readdir($dh))) {
$list[] = $filename;
}
sort($list);
$dh = opendir($path);
while (false !== ($filename = readdir($dh))) {
$list[] = $filename;
}
sort($list);
foreach($list as $file)
{
if (!is_dir($path.'/'.$file)) {
$img_size = getimagesize($path.'/'.$file);
$file_size = round(filesize($path.'/'.$file) / 1024, 1);
?>
>
| File name: | |
| File size: | (KB) |
| Image size: |
}
}
?>