I have a client who needs to send cXML data to my script. They are sending it in the body of the request instead of as a POST request. How can I read the data in the body of what they send?
Asked
Active
Viewed 16 times
0
-
Could you post more details? – Fellipe Sanches Apr 30 '20 at 21:14
-
1The raw POST body should be contained in the stream [`php://input`](https://www.php.net/manual/en/wrappers.php.php). – Sammitch Apr 30 '20 at 21:55