|
1 |
$HTTP_RAW_POST_DATA |
instead of
|
1 |
$_POST |
It will give you POST data as is. You will be able to decode it using
|
1 |
json_decode() |
later
|
1 |
$HTTP_RAW_POST_DATA |
instead of
|
1 |
$_POST |
It will give you POST data as is. You will be able to decode it using
|
1 |
json_decode() |
later