http://php.flashwebhost.com/mini/array.php


Code:
<?php


$animals = array('lion', 'dog', 'cat', 'horse', 'rabit', 'tiger', 'rabit', 'camel', 'deer', 'fox', 'squirrel');

echo $animals[0];
echo '<br>';
echo $animals[2];
echo '<br>';
echo $animals[3];
echo '<br>';
echo $animals[5];
echo '<br>';
echo $animals[10];