I have an inherited class method that is required to only handle items from $POST (and $POST alone, for security reasons), for validation and action processing.
Problem is that there is a section in my application that has to put everything into an encoded query string for HTML reasons (the page is a giant form and if I were to put the stuff into individual forms, I would have a bunch of embedded forms inside one form and that is an HTML no-no). So I need to figure out how to put everything into $POST from $GET before the validator handles it.
I've tried but when I do that, $POST exists, but even with register_globals turned on, while $POST['section'] exists, $section does not.
How do I put $GET into $POST and keep it there?
Thanx
Phil