> In fact the mistake was on the PHP. I solved it by strip the slashed > first to have a proper PHP array.
> $json1 = json_decode(stripslashes($_GET["json"])); > Someone please correct me if using the wrong path. Yes, it stands to reason that if you are using magic quotes (which are deprecated), you will need to adjust any data transport format which is specifically designed to include quotation marks. --Sandy
