plz check this:
this code print all array except array[0] why???PHP Code:function info(){
$a = array(
'Name'=>'Othman',
'Nickname'=>'vividona',
'Age'=>'35',
'Nationalit'=>'Sudan');
foreach($a as $k=>$v){
while(list($k, $v) = each($a)){
echo "$k=>$v<br />";
}
}
}
info();

