Hi
I have a PHP page at my server which receives the code shown below.
The problem is that the POSTed data isn't placed inside a variable, so I can't fetch it by $_POST['variable_name'] for example.
Anyone know how to get the posted data somehow?
Thanks in advance!
Simon
POST /mypage/ HTTP/1.1
Host: www.myhost.com
Content-type: text/xml
<?xml version="1.0"?>
<data>
<cmd>activate</cmd>
<param>
<name>John Public</name>
<email>john.public@domain.com</email>
<system>test</system>
</param>
</data>