• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

MySQL mysql_fetch_row

jestem pro

That is the question
Joined
Apr 20, 2013
Messages
650
Solutions
14
Reaction score
88
Hello. I'm trying to migrate a script from postgreSQL to MySQL, but I have't been solving the problem since 2 days.
I wanna get next record from the database, but It shows only the first.

In the postgre's script I have
SQL:
pg_fetch_row($result, $_SESSION['pointer']);

And in mysql:
SQL:
mysql_fetch_row($result);

Coz this function donesn't support more parameters.

And my question is how to implement the "$_SESSION['pointer']" which points for queries?
 
Back
Top