Quote:
Originally posted by Martz
[...]
PHP Code:
$results=$DB_site->query("SELECT * FROM user WHERE userselect=1");
while ($result=$DB_site->fetch_array($results)) {
// start a loop which will:
// assign the contents of the current record in the loop to the variable $result.
}
// end of while loop
|
Sorry for bumping, but didn't found a better place...

Well, just for hacking purposes, I would need to 'surf' the above
$results set.
How could I - for example - reset the fetch pointer without resending the query ?
Is that set just like a stack or each fetch_xxx() I'll loose at all the previous record ?
Thanks.