1$personJSON = '{"name":"Johny Carson","title":"CTO"}';
2
3$person = json_decode($personJSON);
4
5echo $person->name; // Johny Carson
1$postedData = $_POST["JSONfullInfoArray"];
2$tempData = str_replace("\\", "",$postedData);
3$cleanData = json_decode($tempData);
4var_dump($cleanData);