Im trying to get some backend scripts working on our server, but im not too sure about these array things!
At the moment if i do
<pre>
print_r ($accts);
</pre>
it outputs:
Array
(
[benenden] => Array
(
[0] => benendenchurch.org
[1] => Building Block 1
[2] => root
)
[mnahost] => Array
(
[0] => mnahost.com
[1] => undefined
[2] => root
)
[periton] => Array
(
[0] => periton.co.uk
[1] => undefined
[2] => root
)
[stamps2u] => Array
(
[0] => stamps2u.com
[1] => undefined
[2] => root
)
)
How can i seperate these into individual values?
eg. $mnahost_0, $mnahost_1 etc