Re: [PHP] Using large multi dimenstional arrays in js

2009-06-23 Thread Simon
you could pack the array into a string and decode that later, using json prolly... Or, you could output the data to XML and load the xml file in an iframe, then browse through the iframe's DOM structure to get the values you need. On Wed, Jun 17, 2009 at 6:32 PM, Sancar Saran wrote: > Hello all,

Re: [PHP] Using large multi dimenstional arrays in js

2009-06-17 Thread Björn Bartels
Hi... you can use 'json_encode'... http://de2.php.net/manual/de/function.json-encode.php like this... var my_js_array = ; YT BB Am 18.06.2009 um 00:32 schrieb Sancar Saran: Hello all, My new project needs to use large multi dimenstional php arrays in j