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
|