PDA

View Full Version : Saving MySQL Search results? (PHP)



El Phantom
August 25th, 2006, 06:44 PM
Is there any way to save an entire query results object in php? I've tried serializing it and using Sessions and such, but haven't really had any success. Is there some way to hold onto search results between separate php pages?

Thank you very much,

--EP

hl
August 25th, 2006, 08:08 PM
Just bring it into an array and then store that in a variable (session).

El Phantom
August 26th, 2006, 02:49 PM
k, i'll try that, thanks.