|
Posted by Adrian Bruce on 10/25/05 14:54
dont know of a function but this should work
$size = count($array);
for($i=0;$i<$size;$i++){
if($selected_person == $array[$i]){
echo"index: $i";
}
}
Adrian
Ross wrote:
>Hi,
>
>I have an array
>
>$people= array ("ross", "bob", "chris")
>I have a variable
>
>$selected_person = "chris"
>
>
>
>I want to do the find out the index of the $selected_person in the $people
>array. Is there a function that can do this??
>
>ta,
>
>
>
>Ross
>
>
>
Navigation:
[Reply to this message]
|