Re: [PHP] Changing items in $_POST

2004-07-24 Thread Curt Zirzow
* Thus wrote Jeff Oien: > I have items from a form that will be in $_POST that I want to send on. > I'll be using this: > $arr = array(); > > foreach($_POST as $key => $value) { > $arr[] = $key.'='.urlencode($value); > } > > $URL = "https://example.com/script.asp?".implode('&',$arr); > head

[PHP] Changing items in $_POST

2004-07-23 Thread Jeff Oien
I have items from a form that will be in $_POST that I want to send on. I'll be using this: $arr = array(); foreach($_POST as $key => $value) { $arr[] = $key.'='.urlencode($value); } $URL = "https://example.com/script.asp?".implode('&',$arr); header("Location: $URL\n"); However, there are a