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 have a PHP file that is going to write a two-dimensional array in JavaScript:

<?php
    print "<script language='javascript'>";
    print " extra[0][0] = new Array(1,'Bob',12);";
    print " extra[0][1] = new Array(2,'Alice',18);";
      ..
    // Need to assign the extra[1][0], extra[1][1] and so on.
    print "</script>";
 ?>

Mu.js:

  var extra =  new Array();
  ...

How do I assign the two-dimensional array from PHP to a JavaScript variable?

share|improve this question

2 Answers

json_encode is your friend: json_encode in the PHP manual


<script type="text/javascript">
  var jsArray = <?= json_encode($my_array) ?>;
</script>

share|improve this answer
I have encoded in PHP, I unable to decode in javascript ,could u please suggest an example? – venkatachalam Jan 17 '09 at 10:39
Just build the array in PHP as you want it to look in Javascript, and then pass that array to json_encode. – wvanbergen Jan 17 '09 at 11:15
<script type="text/javascript">
 var jsArray = <?php json_encode($my_array); ?>;
</script>
share|improve this answer

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.