cUrl, PHP and a Accessing a Particular Header Type cUrl, PHP and a Accessing a Particular Header Type curl curl

cUrl, PHP and a Accessing a Particular Header Type


Looks like the correct solution is to access the raw POST data via:

<?php $postdata = file_get_contents("php://input"); ?>

Per http://php.net/manual/en/reserved.variables.httprawpostdata.php


It is called raw post data:

$xml = $HTTP_RAW_POST_DATA;