I'm sending a stringified json object to a php page. I want to loop through it in php. When I use:
echo $_POST['Tags'];
that results in:
{\"0\":\"tag1\",\"1\":\"tag2\"}
but
echo json_decode($_POST['Tags'], true/false);
doesn't print anything. Shouldn't I at least get Array
?