I want to show some mysql results in two different areas...
I thought I would do two queries, and show a certain few (1-5) or whatever on one area, and the rest on another, however I need them split even....
how can I do this?
I thought about doing something like......
if (is_float($counter/2)) $area = "area1";
else $area = "area2";
but I don't know. Could I somehow check the amount of rows in a table, split that in half, and show the first half in one area and the rest elsewhere?