Why outputting this date (\"2011/7/11\") with json_encode displays (\"2011\\/7\\/11\")?
(\"2011/7/11\")
json_encode
(\"2011\\/7\\/11\")
How can I convert \"2011\\/7\\/1
\"2011\\/7\\/1
$data_go = str_replace('\'','', $data_go);
it will remove all forwards slashes and will give you desired result..