<!DOCTYPE html>
<html>
<body>
<?php
$people = array("Bill", "Steve", "Mark", "David");
print_r (each($people));
?>
</body>
</html>