I have an array:
$lst[$aa]=array("T"=>$title,"I"=>$ititle,
"M"=>$mtitle,"Y"=>$year,"O"=>$other,"A"=>$paa);
I need to search the array later in the code and find a title in the "A" field. This is part loop. I am hoping to avoid using a foreach loop to do the search. Is there some easier more effecient way to do this?
TIA!