I can't seem to figure out how to get a set of variables on my PHP page to pass to a friend's CGI page. This is driving me crazy. I have a variable $OrderID that is supposed to be sent to my friends page after it processes my PHP script, I've been able to send them to a test page of my own ( a php page) but when I try to send them to his (which is another form), it doesn't see it. I'm sending it via
header('Location: http://www.begaservices.com:9777/cgi-bin/cmwc1.cgi?OrderID='. $OrderID . ' ' );
does anyone have an idea how I can achieve this? I've made sure that my variable that is being passed is the same as his field names and have tried multiple combinations, yet nothing seems to work. Any expert advise on this would be greatly appreciated!