LonghornPHP 2026

Voting

: seven minus seven?
(Example: nine)

The Note You're Voting On

Matthew Wheeler
23 years ago
Note that the internal row counter is incremented BEFORE the row is retrieved. This causes an off by one error if you try to do:

pg_result_seek($resid,0);
pg_fetch_row($resid);

you will get back the SECOND result not the FIRST.

<< Back to user notes page

To Top