Am I right to say mysql_data_seek allows me to walk through a database
return as I would an array?
for ($1=0; $i < $num; $i++) {
mysql_data_see( $result, $i);
$row = mysql_fetch_arr ay($results);
}
I still haven't solved the problem I mentioned in another post (I can
only get the first row back from my returns), so I'm tempted to go
this route.
return as I would an array?
for ($1=0; $i < $num; $i++) {
mysql_data_see( $result, $i);
$row = mysql_fetch_arr ay($results);
}
I still haven't solved the problem I mentioned in another post (I can
only get the first row back from my returns), so I'm tempted to go
this route.
Comment