I have a page which has a POST form on it that includes a set of three choices in a select box. Depending on the choice in the select box, the data will be handled, or forwarded to another script. Handling isn't a problem, but the only way I can think of to forward the data without using a cookie, or urlencoding it is to use
header('POST targetScript.php HTTP/1.1');
And then tack the data onto the end, exactly like it is done in a normal POST.
I can't help but think there's got to be a better way, but I've scoured the online manual, and can't find much ... any ideas?