I am having a problem showing the most recent updates to the database.
I have a customer order form and an address change form. The users can change the address, and the change does take place in the mysql table, but when they go back to view the customer record, it shows the old data. It does not matter how many times they hit the refresh button.
If they empty their browser cache and history and restart the browser, then they can see the update.
How can I get the most recent data to show up on the page?
By the way, I have the following set in the php.ini file:
session.cache_limiter=private
Since I want to allow users to hit the back button to change an order with out starting the order over from scratch.
Thanks