coolcat,
There is an item in the PHP Manual that might help you.
Not only did this person post this on my Birthday (must be a sign) but it seems to do what you want.
<?php
function mysql_fetch_rowsarr($result, $numass=MYSQL_BOTH) {
$got=array();
mysql_data_seek($result, 0);
while ($row = mysql_fetch_array($result, $numass)) {
array_push($got, $row);
}
return $got;
}
?>
This will give you:
// Show the 7th row 'id'
<?php echo $row_test[7]['id']; ?>
best of luck!