Php Connector render_array

Hi guys

I’d like to render a PHP array in my application. But I can’t find no documentation or sample about this except this article:
docs.dhtmlx.com/doku.php?id=dhtm … nder_array

I can’t figure out how my array should look like.
Something like the following should result in two grid rows. You may have a sample to provide?

[code]Array
(
[0] => Array
(
[id] => 1
[vlan_id] => 2
[network] => 192.168.52.0
[subnet] => 255.255.255.0
[gateway] => 192.168.52.1
[broadcast] => 192.168.52.255
[dns] => Provider
[name] => Network1
[other_infos] =>
)

[1] => Array
    (
        [id] => 2
        [vlan_id] => 3
        [network] => 172.16.16.0
        [subnet] => 255.255.240.0
        [gateway] => 172.16.16.1
        [broadcast] => 172.16.31.255
        [dns] => 10.10.0.100, 10.10.0.101
        [name] => Network2
        [other_infos] => 
    )

)[/code]

Thank you very much
Andy

Yep, the above format look valid
Check
docs.dhtmlx.com/doku.php?id=dhtm … or:basis&s[]=render_array#loading_from_php_array

Basically first level is array of arrays, second level is array ( hashmap actually ) where keys will be used as field names.