Hello,
I am just wondering, is it possible to cache a $result return by a mysql_query function?
I've tried something like session_register('result'), and it didn't seem to work ...
Thank you for your help!
Unfortunalty the $result is only a handler the data doesnt actually get put into a variable until you do a mysql_fetch_array or mysql_fetch_row or mysql_fecth_object... but you could store all the rows into another array and then serialize($arrayOfAllResultRows); that would work... be careful of binary data though...
-Jon