LPMJ Example 6-8 (Click on the icon to view the source for copy and pasting)
<?php
$paper = array('copier' => "Copier & Multipurpose",
			   'inkjet' => "Inkjet Printer",
			   'laser'  => "Laser Printer",
			   'photo'  => "Photographic Paper");

while (list($item, $description) = each($paper))
	echo "$item: $description<br>";
?>