Simple Array (111)
 <?php
$x
=array(1=>"one","two","three");
foreach (
$x as $key => $val)
  {
  echo 
$key "=>" $val "<br />";
  }
?>