hi there,
i coded some kind of a bulletin board. members can add, change or delete articles. everything works fine, but...
if i choose an article from a list, i get a form with the article details (headline, short text, long text) filled in. if i press "delete", the article is deleted, but when i hit the back button, i get back to the form with the article which doesnt exist anymore.
or if i alter the details and press "save changes" the form is being processed correctly, but if i go back i get the old version of the article.
that might be confusing for the user.
i guess thats because the php script is not being processed once more and so i get a cached version of the form.
meta-tags like:
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
dont make it
can anybody tell me how to force the browser to request the form again so i can catch the error?
helpless
andy