<?php $age=array("Peter"=>"","Ben"=>"","Joe"=>""); foreach($age as $x=>$x_value) { echo "Key=" . $x . ", Value=" . $x_value; echo "<br>"; } ?>