<?php
$galeriq = "Галерия";
echo "<size>$galeriq</size>" ;
$path = "dirr";
$dh = opendir($path);
$i=1;
while (($file = readdir($dh)) !== false)
if($file != "." && $file != "..")
echo "<img src='$path/$file' title='$file'><br>" ;
$i++;
closedir($dh);
?>