RedRocky Posted August 4, 2010 Share Posted August 4, 2010 What is the best way to display the next record on a web page, from a list of records, without executing the query over and over again each time you display the next record? For example, imagine my user has a list of messages displayed on a web page, and the user filters that list to display all messages with the title "Test", and let's say that returns 12 records. He then clicks on record 1 to read that message. Once he is done reading it, he then wants to read msg 2, and then msg 3 etc. He could hit the Back button in his browser and click on the next record from the list, but it would be more useful to just click on a link that says "Next" which displays the next message in the filtered list of messages (without having to go back to the list). A lot of web sites do this sort of thing, but what is the best way to do it? Do you have to run the original query again each time a new message is loaded, so you know which message is next, or can you somehow store the query to save the server from having to run the same query over and over again? If a user is viewing a list of pictures for example, they could be flicking through the pictures quite quickly, and I would not like to have the server running the same query over and over again every few seconds when it doesn't need to. Advice? (Thanks.) Quote Link to comment https://forums.phpfreaks.com/topic/209781-displaying-the-next-record-on-web-page-without-executing-query-again/ Share on other sites More sharing options...
litebearer Posted August 4, 2010 Share Posted August 4, 2010 store the info in an array Quote Link to comment https://forums.phpfreaks.com/topic/209781-displaying-the-next-record-on-web-page-without-executing-query-again/#findComment-1095072 Share on other sites More sharing options...
dolrichfortich Posted August 4, 2010 Share Posted August 4, 2010 Try this one http://benmetcalfe.com/blog/2005/12/mysql-database-caching-in-php/. Quote Link to comment https://forums.phpfreaks.com/topic/209781-displaying-the-next-record-on-web-page-without-executing-query-again/#findComment-1095077 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.