Hi all,
I am using the same old way of retrieving data from a postgres db. something like this
SQL=.. (simple like select id from table)
pg_exec..
for(numrows){
pg_fetch_row..
echo row..
}
and I was surprised one day, because the above produced 2 totally same lines for every primary key row in the db... but this cannot be!!
Anyone had the same problem?
what can be wrong ?? I dunno please help!!