Web service

I’m getting the following result from a web service call. I’d like to pass it to another page, possibly using sessions, and then access specific values on that page, such as FirstName.

stdClass Object ( [GetProspectAsJSONResult] => [ { “ProspectId”: xxxxxx, “Keycode”: “Test”, “FirstName”: “Test”, “LastName”: “Test”, “Company”: “Test”,“Email”: null } ] )

I’m not sure what the best way to do this is. I’ve tried:

var_dump(json_decode($response, true));

I get NULL

Thanks!

try

var_dump(json_decode($response->GetProspectAsJSONResult, true));