I have 2 forms, one is the initial registration (member) and the other is for outsiders posting.
Both go to a confirmation page of information and both have error checking in PHP. If you submit and you’re missing a field and hit BACK, the values in the first form are saved… although the values in the second form are lost.
Is there a specific validation of sorts, I double checked DOCTYPES etc.
Any idea as to what causes this to work/not work?
EDIT: Fixed, making sure all ELEMENT tags were properly opened/closed/positioned as well as DOCTYPES made the information return when failing to validate.
I’ve had this issue before, you have to make sure that ALL your HTML Elements are properly closed. For example, (Add the slash at the end), for
etc.. make sure DIVs are opened and closed without overlapping into other DIVs and this should solve the problem.
Nothing too crazy