Alternative to $HTTP_RAW_POST_DATA
If you need to access the Raw Data From the Post Stream, you can do it using the following command;
$raw_post_data = file_put_contents(“php://input”);
If you need to access the Raw Data From the Post Stream, you can do it using the following command;
$raw_post_data = file_put_contents(“php://input”);
You must be logged in to post a comment.