A company is sending info to my site and they want to send it to a CGI file as:
mysite.com/cgi-bin/process.cgi?custid=ab123&amount=12345
I have to write the parameter data to a MySql db and I'd rather use PHP (since I don't know cgi). How can I pass the url parameters to my php script? Also, if I redirect to a php file, would the sender know that I was doing that? Can't I just "call" the php file from the cgi script?