Please find attached a screenshot of the problem that I am experiencing.
I would like to echo out the value of cn from my multidimensional array. My array for exmaple is called $information. I am attempting to echo the value of cn by doing this:
echo "$information['cn'][0]";. I have also tried $information['cn'][0] and $information["cn"][0] however I keep getting the error undefined index.
When I attempt to loop through the array using a foreach I do not receive an out of the array.
Could some one please shed some light on why I am not able to echo the common name i.e. cn.
Thank You