Thanks for looking at my Thread.
I am developing a PHP application where I do the following:
- Do a query and save results in an array.
- This array is used all over my page.
The problem is, the results of the query is the same on each new session, so as the user browses through the pages the initial query's results stays the same throughout.
The problem:
The query needs to be done on each new page although the results are exactly the same.
Solution Required:
Is there no way to store this repeating data somewhere. Can this be done with something like AJAX or something? All I need is to store an array somewhere, so I can use it all over for a complete session. I don't want to re assign the same data to the same array over and over again if it is going to stay static in any ways!
Thanks,
Jason