View Single Post

  #1 (permalink)  
Old 10-16-2003
Kris Yates
 
Posts: n/a
Default converting GET to POST

Currently, I am posting via GET to third party server as seen below:

$item=urlencode($item);
header("Location: https://www.fake.com/fake.php?item=$item");

I want to reconfigure my header calls to POST instead of using GET for
sending $item to third party server. Is this doable?

Thank you,

Kris
Reply With Quote