Strukturierte Ausgabe! 4 Fotos pro Zeile

HackTack10

Mitglied
Hi !

Habe das Problem, das er mir die Fotos nur untereinander anzeigt. Ich möchte gerne das er mir 4 Fotos pro Zeile anzeigt!

Code:
echo "<table>";
echo "<tr>";
$a=0; 

while ($find = readdir($oeffne_pfad)) // Ordnerinhalt auslesen
				{
if (preg_match("/^$item.*\.(?:jpg|gif|png)$/i", $find))
{
$bild = "$bild_pfad/$find";
$query = "SELECT bild, COUNT(*) as number FROM punkte where bild = '$bild' GROUP BY bild";
$result=mysql_query($query);


echo "<tr>";
print "<td valign= 'top'>";
print "<a href=\"foto.php?bild=$bild&location=$location&datum=$datum\"><img src='$bild' width=100 height=75 border=1></a>";
print "</td>";
print "</tr>";


echo "<tr>";
print "<td>";
print "<p>";
print "Klicks: ";
  

 while($row = mysql_fetch_object($result))
 {
     print $row->number;
     print "</p>";
   print "</td>";
 }

print "</tr>";					
                    
 
$querya = "SELECT bild, nachricht, COUNT(*) as numbera FROM nachrichten where bild = '$bild' Group BY bild";
$resulta=mysql_query($querya);

 echo "<tr>";
     print "<td>";
	   print "<p>";
print "Comments: ";
      

   while($row = mysql_fetch_object($resulta))
{

print $row->numbera; 
print "</p>";
 print "</td>";

   
}
print "</tr>";					
                       
						 
            }
		 
             
	  } 
++$a;
 if ($a % 4 == 0) { 
	print "</tr>";					
                         }
}
 echo "</table>";
 
Das ist dann wohl eher ein html Problem .....

Du mußt die Bilder dann in einen <tr> setzen, nicht in verschiedene.

HTML:
<tr>
<td><img src="(EmptyReference!)"></td>
<td><img src="(EmptyReference!)"></td>
<td><img src="(EmptyReference!)"></td>
</tr>

dann erscheinen die Bilder nebeneinander....
 
Zurück