Reference Array by index
<? $myarray = array('one', 2, 'three'); echo($myarray[0]); echo($myarray[1]); echo($myarray[2]); ?>