Quote:
Originally posted by mrreuben
Simple solution:
replace the ampersands in the 2nd url with % 2 6 (no spaces in the symbol. This turns the url into 1 long string. Then call your outscript as normal. Most tradescripts will then not choke on the extra symbols.
If you have a custom script you must call the urldecode() php function in your internal code on the url before sending out the hit. This puts the url back together for the browser.
example
outscript.php
var=80&var=1&url=http://babes.spotbrokers.com/gallery.php?snid=58%26linkid=pop-14
hope this helps
|
so If i replace this
$url = header_check($url);
with
$url = urldecode(header_check($url));
in my outscript.php
that should do it???