Hi, is it possible to check whether a value exist in an array, and then if it exist, return the key.
Right now there's in_array() but it doesn't return the respective key.
Or do I have to manually loop thru the array and compare each value?
How about array_search()?
Cgraz