php - Loop output in two diffrent divs?
- by Stan
I want to output my sql rows on each side of a line, without breaking the line.
Forexample the html/css code i would like to end up with is something like this:
<div id='container'>
<div style='float:left;'>
Even loops here..
</div>
<div id='line' style='float:left;'>
</div>
<div style='float:right;'>
Uneven loops here..
</div>
<div style='clear:both;'></div>
</div>
Is there a way to output the sql rows in two diffrent divs?