BenRussell
Programmer
I want to know how to redirect someone to a webpage, but send POST information along with them. I know that I could use the GET method like this:
However, sometimes there might be more information than a web browser will allow a client to enter into the 'Address' bar of their browser, therefore the GET method would not send all of the information.
Is there a way that I can send someone to a website (for instance, and send information along with them using POST?
- Ben
Code:
print "Location: [URL unfurl="true"]http://www.somesite.tld/somescript.pl?key1=value1&key2=value2\n";[/URL]
However, sometimes there might be more information than a web browser will allow a client to enter into the 'Address' bar of their browser, therefore the GET method would not send all of the information.
Is there a way that I can send someone to a website (for instance, and send information along with them using POST?
- Ben