Hi.
I need to send a user to a form using a redirect, however, i will need to POST back the data they submitted. I am not able to just display the form on the script page.
Basically, I am creating a server side validation system, where there are a number of different forms. The plan was to redirect the users back to the page they came from with the data, plus a bit more for error checking, however if using the normal Header(Location redirect this would need to be done using GET, but post is needed as there is too much data.
As a last resort I will need to have every form contain it's own validation code, then use a POST request using cURL or something to submit the final/complete data to the current submission script (where I wanted the validtion code).
Any ideas?
Thanks!