I have been reading that you can expire a page with META tags. Well I have put these meta tags in my pages and when you submit a form and push back, the page does not expire or do anything of that nature. I was wondering if this is a php thing, that maybe the form looks for pages named .html. I was hoping someone could give me a little insight on this.
Thanx
Try using this if you are trying to stop the page from being cached, this must be put before any html tags. Header("Cache-control: private, no-cache"); Header("Expires: Mon, 26 Jun 1997 05:00:00 GMT"); Header("Pragma: no-cache");
do you know if this is the same for perl cgi's?
Yup, those are HTTP headers, they're not specific to any one application, OS or language.
*