Hay, i have an array which contains a set of arrays, here's an example.
array(
[0]=>array('name'=>'bob'),
[2]=>array('name'=>'tom'),
[3]=array('name'=>'mark')
)
How would i get the last item in the array, and returns it's key.
So in the above example it would return 3.