foreach is your answer! Read this manual page ...
Give this code a try so you have an idea on how it works.
Example 1:<?php
$array = array("one","Two","Three","Four","Whatever");
foreach($array as $v) { print $v . "<br />"; }
?>
Example 2:<?php
$array = array("value 1","value 2","value...