Reputation: 278
How does mysql_fetch_array work?
Is it a stack/queue?
Upvotes: 1
Views: 177
Reputation: 164956
It fetches the current row from the open cursor and hydrates it into an array using one or both of two methods:
See http://en.wikipedia.org/wiki/Cursor_(databases)
Upvotes: 3