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
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
2 matches
Mail list logo