Hi my registration has three parts which means that it passes input from page 1 to page 2 then to page three. The 4th part is the process.
I ask because im having an issue with my text var value and i want to make sure this is not the problem.
lets say i have text1 that is input on page one of the registration.
i escape the post value.
then that value is passed as hidden inputs (no display) to the other pages until it gets to the process page where it is processed.
along the way i escape the post values as the data grows.
in other words
page one text1 i escape
i pass that to page2 and escape the post.
i pass that to page3 and escape the post.
i pass that to page 4 and escape the post.
by the time i get to page 4 i have about 30 or so dif var ready to be processed.
my question is if there is only one input on page 1 for text one and it is only being passed not displayed not edited along the way, do i need to escape the post with every pass? As long as its not touched it should be ok just escaping the first time right.
im having an issue with the final text being funky and i think it might have something to do with multiple escapes when i dont need to.
thanks.
I ask because im having an issue with my text var value and i want to make sure this is not the problem.
lets say i have text1 that is input on page one of the registration.
i escape the post value.
then that value is passed as hidden inputs (no display) to the other pages until it gets to the process page where it is processed.
along the way i escape the post values as the data grows.
in other words
page one text1 i escape
i pass that to page2 and escape the post.
i pass that to page3 and escape the post.
i pass that to page 4 and escape the post.
by the time i get to page 4 i have about 30 or so dif var ready to be processed.
my question is if there is only one input on page 1 for text one and it is only being passed not displayed not edited along the way, do i need to escape the post with every pass? As long as its not touched it should be ok just escaping the first time right.
im having an issue with the final text being funky and i think it might have something to do with multiple escapes when i dont need to.
thanks.
Comment