do you know of a function that will report the position of a search string
in an array..
So lets say I had an array of $testing
$testing[0] = a
$testing[1] = b
$testing[2] = c
$testing[3] = d
$testing[4] = e
$testing[5] = f
And I wanted to know where "d" was in the array it will then return 3 as the
value any ideas?