Ok, after making some changes to php.ini I have $HTTP_RAW_POST_DATA working. :rolleyes:
It's picking up the posted data as it should, the only problem now is how it's displaying it. Remember, this is just a test, the XML will be sent by an outside server in the near future.
My form looks like this (page1.html):
<input name="test" type="hidden" id="test" value="<ProvisionRequestStreamClosure>
<ServiceNumber>2145292436</ServiceNumber>
</ProvisionRequestStreamClosure>">
When I echo $HTTP_RAW_POST_DATA it's pringing like this (page2.php):
+=%3CProvisionRequestStreamClosure%3E%0D%0A%3CServiceNumber%3E2145292476%3C%2FServiceNumber%3E%0D%0A%3C%2FProvisionRequestStreamClosure%3E&Submit=Submit
Why is it changing the < and > to %3E and things of that sort ?