Let's say I have an array for fruits: apple,banana,grape,orange
Is it possible to print out one of the values by specifying it's position in the array?
For example, if position = 1, the result would be banana.
I think what I'm looking for the opposite of array_search.
Anyone?