I have a simple form validation class in PHP. It works like this:

A: form page that POSTs results to VALIDATION page

VALIDATION: checks results. If wrong, set cookies with the name of the fields that are wrong and the message for each input error. Go back to A form page by using headers location property.

A: if the cookies are present, print error messages associated with each field as well as the rest of the form.

This works well in all browsers but Firefox. Firefox is setting and deleting the cookies fine. But when VALIDATION sends user back to page A, the same error messages of last input errors are present. This despite cookies being different from last time.

I've tried to use the following lines to invalidate cache, but had no luck:

header( "Cache-Control: no-cache, no-store, must-revalidate" );

Anyone knows what's going on?

link|improve this question
feedback

3 Answers

That seem to be bad idea to make this there-and-back redirects. Validation can be done by the same script that outputs the data input page. You just insert error code to a form, containing user data if you detect something went wrong. If all went fine - then do redirect a user to a success page. Not vice versa.

link|improve this answer
+1. Additionally, using cookies may cause conflicts if the same page is opened in multiple tabs. – Frank Farmer Oct 15 '09 at 15:58
feedback

It's me again. I managed to fix this. The problem? Firebug. I disabled and removed Firebug and it started working!

link|improve this answer
It's good, but nevertheless, I hope, you will consider my recommendation anyway ;) – FractalizeR Oct 16 '09 at 8:06
feedback

for security you should avoid using cookies in php, instead use sessions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.