RE: [PHP] in a logic loop!

2002-09-24 Thread Naintara Jain
sweet solution. :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] t]On Behalf Of Marek Kilimajer Sent: Tuesday, September 24, 2002 1:44 PM To: PHP Subject: Re: [PHP] in a logic loop! Do it after the loop finishes while( ){ if( something ) { print out

Re: [PHP] in a logic loop!

2002-09-24 Thread Justin French
ble > reqid > requirement > > contains the > reqid requirement > 0 No action > 1 Primary requirement > 2 Further requirement > 3 Completed > > > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > t]On Behalf Of Chris He

RE: [PHP] in a logic loop!

2002-09-24 Thread Naintara Jain
t 2 Further requirement 3 Completed -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] t]On Behalf Of Chris Hewitt Sent: Tuesday, September 24, 2002 1:49 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [PHP] in a logic loop! Naintara Jain wrote: >What I am doi

Re: [PHP] in a logic loop!

2002-09-24 Thread Chris Hewitt
Naintara Jain wrote: >What I am doing is: >I maintain a set of details in say $prev_row (previous row) and another in >cur_row (current row). >The minute my cur_row detail (one unique id) doesn't match the prev_row >detail, I print out all the previous row details, and reinitialize the >various v

Re: [PHP] in a logic loop!

2002-09-24 Thread Marek Kilimajer
Do it after the loop finishes while( ){ if( something ) { print out; reinicialize } } print out Naintara Jain wrote: >I have a logic problem: > >I have a complicated query. The main thing is that I have an ID, and for a >particular ID, I may have between 1 to 3 rows r