<?php $ara=array(3,4,2,9,12,23,5); //echo $ara[0]; $valor=0; while($ara) { echo $ara[$valor]."<br>"; $valor++; } ?>