mixed array_search (mixed needle, array haystack [, bool strict])
Searches haystack for needle and returns the key if it is found in the array, FALSE otherwise.
what can i do if there's more than one hit per needle??
example:
$a = array("a"=>"test", "b"=>"it", "c"=>"test")
$key = array_search ("test", $a);
the result is c, i think.
but i want to get a + c.
Can anybody help me ??
Thanx
Florian