<?php $arr = array("1"=>"100","2"=>"200","3"=>"300"); foreach ($arr as $key=> $value){ echo "Key: ".$key." Value: ".$value." "; }