Jump to content

JSON in Php not working


bookerbb

Recommended Posts

I have a problem and do not know what the problem is. I have a javascript variable in my html. which is

 var people = '{"names": ["Matthew", "Lucas", "Todd", "Roxie", "Kyle", "Ken", "Gideon"], "surnames": ["Patel", "Lee", "Ingram", "Richter", "Katayanagi", "Katayanagi", "Graves"]}';

I parse the variable on one function in my script and use it. Everything works fine.

var mydata = JSON.parse(people);

But then I need to send the data to a php file, I send it by wrtting the data to a hidden input.

var strObject = JSON.stringify(mydata);


var replaced = strObject.replace(/\//g, '');


oFormObject = document.forms['theForm'];
oFormObject.elements["jsonData"].value = replaced;

After which I try to encode it in my decode.php using:

$obj = $_POST['jsonData'];
$p = json_decode($obj);

var_dump($p);

But when I do a var_dump($s) I get this NULL as output.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.