Okay, a little bit of a problem here. I need to create a table, like this:
<cell> <cell> <cell>
<cell> <cell> <cell>
<cell> <cell> <cell>
Now, what will happen is data will be called from a mySQL database to each cell, which is fine, however the problem is I need to be able to set the table so that it only displays 3 cells in a row, then moves on to the next one, displays 3 cells, then moves on again, as in the example above.
How do I do this? How can I get my table to be restricted to 3 cells on each row. In my attempts, all I can get is one long line of all the cells. Each cell holds unique data, and they are all unrelated.
Thanks,
Luke