Mam o to taki kod generujacy mi liste zdjęć:
<?php
$male_dir = './male/';
{
while (false !== ($file = readdir($handle))) {
if ($file != '.' && $file != '..' && $file != 'Thumbs.db')
{
$image_file = $male_dir.$file;
echo ('<td><div align="center">'); echo ('<a href="duze/'.$file.'" rel="lightbox">'); echo ('<img src="male/'.$file.'" alt="" '.$image_size[3].' class="img" />'); echo ('<a href="duze/'.$file.'" target="_blank">'.$file); echo ('</a></div></td>'); }
}
}
?>
Samo tworzenie <td> działa tak jak chcę. Problem w tym że, chce utworzyć tabele po 4 <td>...
I nie mam pojęcia jak zapętlić w/w kod tak aby po 4 wyświetleniu <td> dodawał </tr><tr>.
Chce osciągnąc taki efekt:
<table width="100%" border="0" cellspacing="10" cellpadding="0"> <td><div align="center"><a href="duze/IMG_0320.JPG" rel="lightbox"><img src="male/IMG_0320.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0321.JPG" rel="lightbox"><img src="male/IMG_0321.JPG" alt="" width="200" height="267" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0322.JPG" rel="lightbox"><img src="male/IMG_0322.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0323.JPG" rel="lightbox"><img src="male/IMG_0323.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0324.JPG" rel="lightbox"><img src="male/IMG_0324.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0325.JPG" rel="lightbox"><img src="male/IMG_0325.JPG" alt="" width="200" height="267" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0326.JPG" rel="lightbox"><img src="male/IMG_0326.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0327.JPG" rel="lightbox"><img src="male/IMG_0327.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0328.JPG" rel="lightbox"><img src="male/IMG_0328.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0329.JPG" rel="lightbox"><img src="male/IMG_0329.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0330.JPG" rel="lightbox"><img src="male/IMG_0330.JPG" alt="" width="200" height="150" class="img" /></a></div></td> <td><div align="center"><a href="duze/IMG_0331.JPG" rel="lightbox"><img src="male/IMG_0331.JPG" alt="" width="200" height="267" class="img" /></a></div></td> <!-- i tak dalej -->