If your array was called $array.
for ( $temp=0; $temp<count($array); $temp++ )
{
echo $array[$temp]."<BR>";
}
This will list all the values for the array no matter how many values are stored in the array the count($array) returns the amount of values and the for loop will print them all out.
Mark.