[PHP-DB] I cant get the logic for this...

2002-02-18 Thread Dave Carrera
Hi all, I want to display return results from my query (which works fine) In I tidy way on screen. So my result returns say seven results, I have a table, and I want to show 3 results per row of the table... I.e.: Table TR TD = result1 /TD TD result2 /TD TD = result3 /TD /TD /TR TR TD =

[PHP-DB] R: [PHP-DB] I cant get the logic for this...

2002-02-18 Thread Riccardi Moreno
tdnbsp;/td; } echo /tr; } ? I think it works. Bye, Moreno -Messaggio originale- Da: Dave Carrera [mailto:[EMAIL PROTECTED]] Inviato: lunedi 18 febbraio 2002 13.07 A: php List Oggetto: [PHP-DB] I cant get the logic for this... Hi all, I want to display return results from my query

Re: [PHP-DB] I cant get the logic for this...

2002-02-18 Thread Greg Donald
I want to display return results from my query (which works fine) In I tidy way on screen. So my result returns say seven results, I have a table, and I want to show 3 results per row of the table... I.e.: Table TR TD = result1 /TD TD result2 /TD TD = result3 /TD /TD /TR TR TD =

RE: [PHP-DB] I cant get the logic for this...

2002-02-18 Thread Cami
if ($numrows%3==2){echo tdnbsp;/td/tr;} if ($numrows%3==1){echo tdnbsp;/tdtdnbsp;/td/tr;} } //end if numrows0 echo /table; ? -Original Message- From: Greg Donald [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 2:14 PM To: Dave Carrera; php List Subject: Re: [PHP-DB] I cant