for.php
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>for.php</title>
<style type="text/css">
img{
height: 40px;
width: 50px;
}
</style>
</head>
<body>
<h1>Dice Rolling Game</h1>
<p>Welcome to the dice rolling game. Rolling 100 dice. How many will be sixes?</p>
<p>
<?php
$sixCount = 0;
for ($i = 0; $i < 100; $i++){
$userNumber = rand(1,6);
print <<< HERE
<img src="images/die$userNumber.jpg"
alt = "$userNumber" />
HERE;
if($userNumber == 6){
$sixCount++;
} // end if
} // end for
print "</p><p>You rolled $sixCount six(es)!</p>";
?>
<p><a href="for.php">Try Again!</a></p>
</body>
</html>