LPMJ Example 4-30 (Click on the icon to view the source for copy and pasting)
<?php
$count = 0;
while (++$count <= 12)
	echo "$count times 12 is " . $count * 12 . "<br />";
?>