Array ( [15] => stdClass Object ( [tid] => 15 [vid] => 5 [name] => humdie hume di [description] => blah blah blah [weight] => 0 [language] => en [trid] => 0 ) )
the array above is giving me a bit of trouble. I need to hone in on the name property of the object in the array. Problem is, Array([15] can change...it could be any number there. I need a way to parse this array, that is not concerned with what number is after Array . While this works
echo ($row[15]->name);
i can not use a number to identify.....any thoughts.