SyntaxFix
Write A Post
Hire A Developer
Questions
Use $HTTP_RAW_POST_DATA instead of $_POST.
$HTTP_RAW_POST_DATA
$_POST
It will give you POST data as is.
You will be able to decode it using json_decode() later.
json_decode()