Re: [PHP] Populating table rows

2001-01-16 Thread Tim Zickus
You need a while loop: $sqlCurrentTraces = sqlExecute(...) while ($result = sqlFetchObject( $sqlCurrentTraces ) { ... your table stuff ... } - Tim http://www.phptemplates.org - Original Message - From: "Wade Halsey" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, January

Re: [PHP] Populating table rows

2001-01-16 Thread Philip Olson
Although the syntax is a little odd, let's go with it : while ($result = sqlFetchObject(sqlCurrentTraces)) { $SkyDateAss = $result ->DATEASSIGNED; $SkyDateResult = $result ->DATEAOFRESULT; $SkyAccNo = $result ->ACCNO; print "$SkyAccNo -- $SkyDateAss -- $SkyDateResult \n"; } consi