Okay ...so I'm really new with arrays, here is my problem:
I'm creating an array like this:
$arr2 = array();
$arr2 = array("2001-03-18" => 3);
$arr2 = array("2001-03-24" => 4);
$arr2 = array("2001-03-30" => 2);
I wanna get the value 2 by just specifying the index "2001-03-30"
I don't want to use the while(list...) format
Any way I can get it directly when the user inputs the index "2001-03-30"
Thanks