<?php $a=array("Name"=>"Bill","Age"=>"60","Country"=>"USA"); print_r(array_values($a)); ?> Array ( [0] => Bill [1] => 60 [2] => USA )