Hi, if I have the following:
$arr[] = "john"; $arr[] = "irene"; $arr[] = "sean";
and the values are all unique....
is it possible to remove one of the key with a given value?
You could use array_search to find it, and then unset() the element found (if any).