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
When you do a json_decode, you get an array of this data. So, you can access data like this:
$event_json['data']['object']['fee']
good luck