Hi, i am pulling results from a my mysql database using a WHILE() loop. there are a lot of results, however. I want to be able to keep these results above the fold using tables. so, my question is, how do I get mysql and php to put these results into horizontal html tables? ie, stop results 1-10 in left column and 11-20 in the next cell?
example:
instead of:
cars
dogs
cats
birds
carrots
apples
I want to:
cars carrots
dogs apples
birds
any suggestions?
thx
blue