Here is my array;
$subcategory = array(
"cata" => array("", "Finance", "Economics", "Accounting", "Operations Management"),
"catb" => array("", "Computer Science", "Electrical Engineering", "Mechanical Engineering", "Civil Engineering"),
"catc" => array("", "Poetry", "Literature", "Communications"),
"catd" => array("", "American History", "European History", "World History")
);
If I search for "Poetry", how can I get return "catc"?
forloop inside aforloop – SiGanteng Aug 23 '12 at 17:29