foreach ($array as $key => $val) { print "$key = $val "; }
<?php while (list($var, $val) = each($array)) { print "$var is $val "; } ?>