Please help me out.. i can't print the value I'm searching on screen.
Here is my code.
[code=php] $divisions = array("MUSIC" => array("Saxophone","Piano"),"BBA" => array("IS","Marketing"));
while (list($key,$value)) = each ($divisions["MUSIC"]))
{
print $key;
print "<BR>";
}[/code]