Hello Sir.
This code is printing one image per line, but i need 3 or more per line.
Could you help me please with this? I have being trying but it does not work. thank you.
$str = "";
if (mysql_num_rows($result)>0) {
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
$i++;
$str .= $i.". ";
$str .= "<a href=\"textimage8.php?iid=".$row["image_id"]."\">".$row["image_name"]."</a> ";
$str .= "[".$row["gameandtoyname"]."] ";
$str .= "[".$row["pricevalue"]."] ";
$str .="<img border=\"1\" height=\"90\" width=\"100\" src=\"imagedolls.php?act=view&iid=".$row["image_id"]."\"></a> ";
$str .= "[<a href=\"index.php?act=rem&iid=".$row["image_id"]."\">Remove</a>]<br>";
}
print $str;
}