Hi, i am currently using the code below to display my gallery of pictures
while ($info = mysql_fetch_array($Result)) {
echo("<td><img src=\"$info[picname]\"></td>")
}
the only problem is i need it to add </tr><tr> after it displays 3pictures, and then after it displays the next 3 pics and so on...
<tr>
<td><img src="tom.gif"></td>
<td><img src="fred.gif"></td>
<td><img src="jackie.gif"></td>
</tr>
<tr>
<td><img src="james.gif"></td>
<td><img src="frank.gif"></td>
<td><img src="jimmie.gif"></td>
</tr>
and so on...
Thanks for any help anyone can give me on this.