I\'m new to PHP and JSON, so hoping someone can help me.
I have a PHP which a 3rd party performs a POST against, delivering JSON data. An example of the data sent wo
You can quickly acheive this in following manner:
$body = @file_get_contents('php://input'); $event_json = json_decode($body, true); print $event_json['data']['object']['fee'];