kerkerj
Normal json string:
{"Hey":"There"}
Error json string got from $_POST variable:
{\"Hey\":\"There\"}
This may causes by magic_quotes
in php.ini
Magic is never good in development.
Normal json string:
{"Hey":"There"}
Error json string got from $_POST variable:
{\"Hey\":\"There\"}
This may causes by magic_quotes
in php.ini
Magic is never good in development.