Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I must be making some simple error somewhere, any help appreciated.

Associative Array

data_form[name] = value;

Action

$.ajax({
    type:       "GET",
    cache:      false,
    url:        "../pages/ajax/takeaction.php",
    data:       ({ json: JSON.stringify(data_form) }),
    success: function(data) {
        var message = "Your information has been received!";

        $('.element').html(message)
             .hide()
             .fadeIn(1500, function() {                 
                $(this).append("<br/>"+data)});
    }

});

This is what the JSON.stringify data string ends up as

{"action":"register","username":"","email":"","password":"","password2":"","max":"5000000","userfile":""}

Then my php file action

$json = $_GET["json"];

Gets it and has value

{\"action\":\"register\",\"username\":\"\",\"email\":\"\",\"password\":\"\",\"password2\":\"\",\"max\":\"5000000\",\"userfile\":\"\"}

Then try to decode and it returns nothing (using php array foreach etc)

   $array = json_decode($json, true);
share|improve this question
What do you return if you print_r($array)? Just tested your string locally and it populates the array no problem. So this suggests it might be a problem with the foreach. – simnom Feb 17 '11 at 13:16
@simnom it prints absolutely nothing. – Forteasics Feb 17 '11 at 13:20
Just a note, i found that type "GET" has a limit to it, using post works better for this load. – Forteasics Apr 13 '11 at 11:01

1 Answer

up vote 0 down vote accepted

Do you have both jQuery and Prototype included? If so, take a look at JSON.stringify() bizarreness.

On second thought it looks less like that and more like you have magic_quotes_gpc set to On in php.ini.

share|improve this answer
yeah i do have magic_quotes enabled, would that be causing the decode to fail? – Forteasics Feb 17 '11 at 13:30
I string replaced the escape char '\' and the decode is working. – Forteasics Feb 17 '11 at 13:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.