hey
i am tring to show images of cars stored in database with this
while($row=mysql_fetch_array($result))
{
printf("<a href=\%s?id=%s ",$url,$row["id"]."> <img src=/cards/".$cat."/".$row["cname"]." height=100 width=100></a>");
}
well this work perfectly but it shows the car images vertically one at a time is there any way i can show alteast 3 of them in same row and then skip to next line...
i think i can use next with in the function but i dont know how to and wat to pass it
help plz