Help!
I have this form with many fields that are controllers for webpage design. I take all those fields and build a dynamic page with PHP3 as a "confirmation" that it is what the user wants. I also pass all those fields along again as hidden fields in the dynamic page to a third page after it has been confirmed.
The dynamic page is basically a string that I build and then echo it back to the screen.
I would like to pass that string (which obviously is a bunch of HTML) through to the third page as well through a hidden field (so I don't have to rebuild it later - it will eventually make its way to a database).
Problem is, when I set the value of the hidden field equal to the string containing the HTML, then echo the whole page, it prints the contents of the string to the screen instead of keeping it hidden.
I gotta be missing something obvious here, but all the research I'm doing is getting me nowhere.
appreciate your help.
craig