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.

Possible Duplicate:
How to pass an array of strings from PHP to Javascript using $.ajax()?

I want to pass a associative array from php code to javascript code. Please help me. how do I do this ? Is JSON helpful in this matter? If yes then please provide a simple code for help. Thank you.

From comment below:
HTML + PHP code

<td> 
    <input type="text" style="width:70;" name="<?php echo $quantity;?>" id="<?php echo $quantity;?>" onkeyup="check_valid_range('<?php echo $itemName;?>','<?php echo $quantity;?>',<?php echo json_encode($product_inventory);?>);">
</td> 
<script type="text/javascript"> 
    function check_valid_range(product_field, quantity_field, inventory){ 
        var product = document.getElementById(product_field).value; 
        var quantity = document.getElementById(quantity_field).value; 
        var v = inventory[product]; 
        alert(v); 
    } 
</script>
share|improve this question
3  
Done research much? This is actually a somewhat common task (however, converting to JSON is not technically enough, "</script>" appearing in the JSON is a counter-example. JSON "works" simply because it is a proper subset of Javascript Literal Notation. – user166390 Aug 27 '11 at 20:12
3  
Why all the downvotes? This is not a terrible question. – PaweÅ‚ Adamski Aug 27 '11 at 20:18
2  
Think its because its a Duplicate. – Joe the Person Aug 27 '11 at 20:19
1  
That a duplicate question exists is not a valid reason to downvote. You downvote because a question is difficult to understand or poorly-worded, not because someone else asked the same thing already. – cdhowie Aug 27 '11 at 20:20
1  
@cdhowie If you hover over the downvote button you will see that it says: "this question does not show any research effort". Given that there is almost 4k results in the linked search above and there is multiple duplicates, this clearly warrants a dv. There should be even more results on Google for that. This question does not deserve any upvotes. – Gordon Aug 27 '11 at 20:22
show 7 more comments

marked as duplicate by Gordon, Brian Roach, Mark, Lorem Ipsum, Tim Cooper Aug 28 '11 at 16:34

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

JSON is perfect:

<?php

$mySweetJSONString = json_encode($myAssocPHPArray);

?>
<script>
    var iWantThePHPArrayHere = <?php echo $mySweetJSONString; ?>;
</script>

User pst brought up these concerns:

  • "array("</script>") -- darn, just broke this "perfect" approach."
    It seems to work because (</script> => <\/script>):
    jsFiddle

  • "What about ]]> which could occur in XHTML?"
    The string is able to be transferred.
    jsFiddle


Update:

In regards to debugging the problem with the JS:
Are there any errors in the console? One of your document.getElementById(...) might be returning a null. Therefore the member value doesn't exist.

share|improve this answer
Thanks @cdhowie, I usually try to have complete code O_o – afuzzyllama Aug 27 '11 at 20:15
No problem, just trying to make the code clearer. :) +1 too, this is the right approach. – cdhowie Aug 27 '11 at 20:16
This is not very happy when "</script>" appears in the JSON. While JSON is a subset of JavaScript literals, not all JavaScript literals are valid in a <script> element (and I'm ignoring XHMTL entirely). I really wish there was a function designed just to facilitate this particular use-case with it's little caveats. – user166390 Aug 27 '11 at 20:23
I am doing the same thing. json_encode function. But with a small difference, I am passing array of php to js by calling a function. And the function is not working. I just used alert() in the calling funcition to check if value is received. But nothing happened. – Abhimanyu1310 Aug 27 '11 at 20:25
1  
This is perfectly safe, even if the string contains </script>. PHP's json_encode escapes the / for this purpose. – arnaud576875 Aug 27 '11 at 20:56
show 8 more comments

I always believed JSON were invented for this:

<script>
    var myArray = <?=json_encode($myArray)?>;
</script>

This will render like this:

<script>
    var myArray = {"key":"value","key2":"value2",...};
</script>

Safeness

This is perfectly safe for javascript, as JSON is a subset of the javascript syntax. This means that any JSON string can be treated as Javascript.

PHP's json_encode() is perfectly safe when embedding JSON in <script> tags too, because PHP escapes the / character:

json_encode('</script>');
=> "<\/script>"

So it's not possible to write </script>, which is the only way to escape a <script> tag. (Everything in a <script> tag is part of the script, it's not parsed as HTML.) JSON allows to escape the / for this purpose.

So no JSON string can escape a <script> tag.

share|improve this answer

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