Log in

View Full Version : Even/odd results.


Jolten
11-16-2004, 06:46 PM
Hi folks,

I'm trying to construct a page to display query results I'd like to display the results in two columns.

Since I'm not familiar with a way to break a loop up into two separate tables for display, I was wondering if I could do the same thing with two loops?

One loop displaying the results of even rows and one loop showing the results of the odd row results.

Or would I need two queries and a loop for each query? And if so.. how can I query for every even (or odd) valued row?

Thanks

Andreas
11-16-2004, 06:51 PM
$i = 0;
while ($row = $DB_site->fetch_array($query)) {
if ($i % 2) {
// put in odd colum
} else {
// put in even colum
}
$i++;
}

Jolten
11-16-2004, 08:12 PM
Thanks! Kirby!