PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
...
..
$result=pg_query($connection,"select * from Table");
while( $res=pg_fetch_object($result,$row))
{
echo $res->author;
$row++;
}
The code works fine(doesn't give any error) but doesn't print any value .
However it enters the while loop as many times as the number od records fetched in the query.
Thx. in advance....
Shantanu