RE: [PHP] Re: Table Making

2002-07-11 Thread Lazor, Ed
Will this work for you? $numFields = mysql_num_fields($Results); print table; while ($Row = mysql_fetch_array($Results)) { print tr; for ($i = 0; $ $numFields; $i++) print td.$Row[$i]./td;

Re: [PHP] Re: Table Making

2002-07-11 Thread Jason Soza
Subject: RE: [PHP] Re: Table Making Will this work for you? $numFields = mysql_num_fields($Results); print table; while ($Row = mysql_fetch_array($Results)) { print tr; for ($i = 0; $ $numFields; $i++) print td

Re: [PHP] Re: Table Making

2002-07-11 Thread Kevin Stone
- Original Message - From: Jason Soza [EMAIL PROTECTED] To: Michael Davey [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, July 11, 2002 3:43 PM Subject: Re: [PHP] Re: Table Making I really wish I was at home right now so I could test this out... I'll certainly give this a shot tonight

RE: [PHP] Re: Table Making

2002-07-11 Thread Lazor, Ed
Subject: RE: [PHP] Re: Table Making Will this work for you? $numFields = mysql_num_fields($Results); print table; while ($Row = mysql_fetch_array($Results)) { print tr; for ($i = 0; $ $numFields; $i++) print