دوست گرامی باید بعد از نمایش عکس کد رو بزاری.
کد ویرایش شده :
<?
if ($handle = opendir('upload/'))
{
$count=0;
while (false !== ($entry = readdir($handle)))
{
if($entry != "." && $entry != "..")
{
if($count%3==0)
echo "<tr>";
echo "<td>";
echo"<div class='single'>
<a href='upload/$entry' rel='lightbox'>
<img src='upload/$entry' width='150' height='150' alt='' />
</a>
<br> <br>
</div>";
echo "</td>";
//delete image
unlink("upload/$entry");
if($count%3==2)
echo "</tr>";
$count++;
}
}
}
closedir($handle);
?>