$sql = mysql_query("SELECT * FROM images order By ID DESC LIMIT $from, $max_results");
while($row = mysql_fetch_array($sql)){
// Building my table to show images
echo "<center><table border = 2><TR><TD>
<h3><img src = \"".$row['link']."\" height = \"200\" width =\"200\"></td></tr></table>";
}
Hey guys,
Basically the above is my code and it displays an image loaction from a database table(text), eg "http://www.url/image01.jpg"
but obviously it is showing the images one on top of the other(as i end the TR and the TABLE), but i want to arrange it so its 3 images across. Have you ever had the feeling you know it and its on the tip of your tounge? well thats me, have racked my brains and nothing but i know its there.