I haven't tried, but I don't think a normal redirect would work...as I'm not redirecting perse, but rather posting the data back to the original FORM and redirecting back to the original FORM...
Emulating postback...
Not just, POST data to script, which is easy, but POST data to script & redirect
Using a normal redirect using header() would likely do something like:
1) Send POST data to original script
2) Redirect back to original script - but without post data
So the original script would be executed twice, where first it receives the POSTed data and then it's executed again but just displays the FORM empty...
I need to carry out the process concurrently so when the page is requested the POST data is displayed in the FORM elements...
Any ideas? I think I'm on the right track, but I'd love to hear a solution immediately and not have to wade through the RFC for HTTP and it's status codes...
