I have an array that contains approx 13 items.
What I'm looking to do, is to find the 10th item in the array and display it.
The output from var_dump is:
array(13) { [0]=> int(0) [1]=> int(1) [2]=> int(2) etc etc
Ideally, I'd like to check if the 10th element exists first and if it does, display, it.
Many thanks