KaushikTD
KaushikTD

Reputation: 277

What is the PostgreSQL equivalent to mysql_result()

I looked around and couldn't find it! Maybe I didn't look hard enough,but this website has people who can give quick answers

I'm running PHP5 and PostgreSQL 9.1

Cheers!

Upvotes: 1

Views: 912

Answers (1)

ceskib
ceskib

Reputation: 140

pg_fetch_result or pg_fetch_array should do the trick for you, depending on the exact need.

Upvotes: 2

Related Questions