Re: [PHP-DB] another PHP Sql question...
by Kit DeKat other posts by this author
Aug 29 2003 2:40PM messages near this date
Re: [PHP-DB] Failure Notices When Posting to List
|
RE: [PHP-DB] weird php error
At 09:33 AM 8/29/2003, you wrote:
> You can do:
> while ($row = $result->fetchRow(DB_FETCHMODE_ASSOC))
> {
> extract ($row);
> echo $feild_A . ' ';
>
> $row = $result->fetchRow(DB_FETCHMODE_ASSOC);
> extract ($row);
> echo $feild_A . '<br />';
> }
close, but doesn't handle odd row counts...
while ($row = $result-> fetchRow(DB_FETCHMODE_ASSOC))
{
extract ($row);
echo $feild_A;
if( $row = $result-> fetchRow(DB_FETCHMODE_ASSOC) )
{
extract ($row);
echo ' ' . $feild_A . '<br /> ';
}
else
{
echo '<br /> ';
/* optionally, add a 'last' here to skip extra db-> call */
}
}
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
|