Regarding:
$inr = mysql_num_rows($iresult);
$irow = Array();
for ($a=0; $a<$inr; $a++) {
array_push($irow, mysql_fetch_object($iresult));
}
My result set is quite large - about 7000 records including about 20 fields from an inner join - I need all 20 fields. The php script konks out after about 1500 iterations I assume because of a maximum size for an array. Is there a better way to store a high number of results sets in an array than the way? Perhaps this is not the forum for this question. Thanks for any help.
array max question
Moderator: General Moderators