Quote:
Originally posted by MonkeyMan
so If i replace this
$url = header_check($url);
with
$url = urldecode(header_check($url));
in my outscript.php
that should do it???
|
Basically yes.
Php automaticly passes the variables from a querystring or a HTTP POST into your script as is you should not need to call header_check(). Unless you redefine it.
Just make sure the url in your html pages you change out the ampersands in the 2nd url. This will ensure that $url is passed as 1 long string.