This is probably only a problem 'cous i have been awake to long.... but see if you can spot what is messed up here.
I have an array called $info built from records in my db
if i use the following code:
print_r($info);
echo $info['data'];
I get this...
Array ( [0] => Array ( [advid] => 3 [siteid] => 47 [name] => admin [data] => Text goes here [ref] => ) )
Notice: Undefined index: in /home/portal/public_html/tiki-advanced_info.php on line 8
i dont get it... it says it in the print_r '[data] => Text goes here' so why does it then say that the index is undefined? its not just data actually its any of the indexes i try to use? ne ideas?