I am trying to pass an xml structure via a form to php script where I am unable to populate $HTTP_RAW_POST_DATA
( $xml = $HTTP_RAW_POST_DATA).
I would prefer not to force population of this variable via php.ini.
It may be connected to the encryption type, but I don't know.
Sample of the simple form I am testing
<form action="<?php echo ($postto);?>" method="post">
<input type="hidden" name="cxml-base64" value="<?php echo (base64_encode($xml));?>">
</form>