RE: [PHP-DB] displaying result across 3 cells - where did I go wrong?

2003-08-14 Thread Aaron Wolski
tand it as much as possible *shrugs* Aaron -Original Message- From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] Sent: August 5, 2003 9:08 AM To: Aaron Wolski; [EMAIL PROTECTED] Subject: Re: [PHP-DB] displaying result across 3 cells - where did I go wrong? From: "Aaron Wolski&quo

Re: [PHP-DB] displaying result across 3 cells - where did I go wrong?

2003-08-05 Thread CPT John W. Holmes
From: "Aaron Wolski" <[EMAIL PROTECTED]> > > while($z++ %3 !==0) [snip] > echo (++$z %3 == 0) ? '' : ''; The first time through your code, $z is zero. Since the "thread titles" don't match, your going to get to your while loop above.

Re: [PHP-DB] displaying result across 3 cells - where did I go wrong?

2003-08-05 Thread CPT John W. Holmes
From: "Aaron Wolski" <[EMAIL PROTECTED]> > So.. do I need to use 2 different incrementors? $z and say $x for each > part? > > I basically pieced this code together from several examples I found so > forgive forgive the fact I don't know a whole lot about the code even > though I've tried to underst