Click on Nermal hiding under the blanket to see more
if ($handle = opendir('.'))
{
$count = 0;
while (false !== ($file = readdir($handle)))
{
$pos = strpos($file,"jpg");
if($pos>0)
{
echo "";
$count++;
if($count==1)
{
echo "
";
}
echo "";
}
}
closedir($handle);
}
?>