post - get values of sql return php

one text

Solution:

You are getting an JSON object as a result. You can json_decode and access it as an array.

$responseArray = json_decode($response, true);
$responseArray['o_user_exists'];

Source