From: "Gilberto Garcia Jr." <[EMAIL PROTECTED]>
> Does anyone had tested ADODB with php5?
> I can make a query, print the recordcount but when i try to show the
result i got nothing
>
> while (!$qry->EOF) {
> echo $qry->fields['campo'] . "<br>";
>
> $qry->MoveNext();
> }
You might want to ask on the adodb forums:
http://phplens.com/lens/lensforum/topics.php?id=4
Does this work?
while($r = $qry->FetchRow($qry))
{ echo $r['campo']; }
---John Holmes...
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php