[Solved] php, from json decode to individual variables


$result = $data->response->result;

Assuming the variable $data is where you stored your json_decode. It returns an instance of stdClass, and viewing the vardump, you can see the structure and get the data you want.

solved php, from json decode to individual variables