Is there a way to trigger form submission from within so that I won't have to use header to redirect to another page?
The problem is that I use POST for form submission, but have to redirect using HEADER and the only way to transfer data is to encode the URL.
In the next page first I have to use GET to capture incoming variables and add them as hidden fields in the form and then POST to check for form submission. I want to avoid using both at the same time.