Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
every time I navigate to another page using a php code, the browser shows a CASHED page and I have to refresh the page to see the new result. how can I overcome?
Posted
Comments
pietvredeveld 12-Feb-12 12:52pm    
What browser are you using?
Sergey Alexandrovich Kryukov 12-Feb-12 14:11pm    
If should work for all of them, right? I basically answered, please see.
--SA

1 solution

You can prevent caching your dynamic pages. One of the way doing so is
HTML
<meta http-equiv="cache-control" content="no-cache">

For more detail, please see this Caching Tutorial:
http://www.mnot.net/cache_docs/[^].

See also: http://www.i18nguy.com/markup/metatags.html[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900