example:
array name is "$entries"
when i print_r("$entries[0]");
i get:
Array
(
[homemdb] => Array
(
[count] => 1
[0] => LDAP DATA 0
)
[0] => homemdb
[memberof] => Array
(
[count] => 2
[0] => LDAP DATA 1
[1] => LDAP DATA 2
)
[1] => memberof
)
is trimmed down ALOT ( i have over 60 results)
I need to parse this massive array (which in normal instances i can do) but ive never parsed out and complex array like this ( also need to ignore the [count] values )
heres how i need it dumped (ill use the first two array positions as examples)
<table>
<tr><td>homemdb</td></tr>
<tr><td>LDAP DATA 0</td></tr>
</table>
<table>
<tr><td>memberof</td></tr>
<tr><td>LDAP DATA 1</td></tr>
<tr><td>LDAP DATA 2</td></tr>
</table>
if it helps at all im using a slightly modified version of this LDAP code