I am trying to read in a JSON message in my PHP app and this is my php code:
$json = file_get_contents(\'php://input\'); $obj = json_decode($json, TRUE); ech
Use this one result will
$chd = json_decode(file_get_contents('php://input'), TRUE); $childs = implode("",$chd);