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 have multi levels of objects so use:
echo($event_json->data->object->fee);
Basically you are echoing fee, which is a member of the object name object, which in turn is the attribute of an object named data, which again in turn is a member of your $event_json object.
fee
object
data
$event_json