One service sending POST request with string JSON data to my PHP script. How can i get this data from my php script?
Use the $_POST
superglobal array to access the POST data. The json_decode function will convert JSON into a manageable value.
I would strongly recommend you read some of the PHP manual first before continuing, though.