Re: formatting output: grouping results with identical fields - Mailing list pgsql-php

From Molly Gibson
Subject Re: formatting output: grouping results with identical fields
Date
Msg-id 20030512223134.16430.qmail@web41810.mail.yahoo.com
Whole thread Raw
In response to Re: formatting output: grouping results with identical fields  ("scott.marlowe" <scott.marlowe@ihs.com>)
List pgsql-php
--- "scott.marlowe" <scott.marlowe@ihs.com> wrote:
>
> What you can do is something like (this is pseudo
> code) before you start
> your while loop:
>
> $current_category = <category from first row>
>
> then in your while loop, check to see if it's
> changed:
>
> if ($current_category != $new_category){
>     print $new_category;
>     $current_category = $new_category;
> }
>
> Get the idea? It works a charm for things like this.

Gotcha...nice to know I was on the right track.
Thanks!

mol

__________________________________
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo.
http://search.yahoo.com


pgsql-php by date:

Previous
From: "scott.marlowe"
Date:
Subject: Re: formatting output: grouping results with identical fields
Next
From: Bruno Pacheco Mendonça
Date:
Subject: