This is probably a pretty easy one. But if I have page where im reading a row
while ($row = mysql_fetch_array($result))
and then echoing the output
echo ("".($row["item"])." whataver content here");
and thats working perfectly but instead of just having one long row of items I'm gonna break them into 3 columns.
So it will be:
While $row
echo row1 echo row2 echo row3
So whats the code to call the record for the second or third rows. Then I'm assuming once it formatted with that basic row inside the table it will automatically loop properly pulling the new records with same format?
Thanks alot for any help,
James Flynn