fresh page loads, php maybe?

cfleck

tired
safari likes to cache my pages so i need to make the page load fresh in the browser each time someone visits it.

i presume this could potentially be a problem in other browsers as well.

i am using php and would like to keep it that way, so is there a way i can direct the browser to load the page fresh each time?
 
Meta tags will work for this I believe.

Code:
<meta http-equiv="Pragma" content="no-cache" />

Safari should respect that and not cache the page.
 
Back
Top