rollDice1.php
Source of rollDice1.php
<!DOCTYPE html>
<html lang = "en-US">
<head>
<meta charset = "UTF-8">
<title>rollDice1.php</title>
</head>
<body>
<h1>RollDice 1</h1>
<h2>Uses Sequential Programming</h2>
<div>
<?php
$roll = rand(1,6);
$image = "dado_$roll.png";
print <<< HERE
<img src = "$image"
alt = "roll: $roll"
width = "100px"
height = "100px" />
HERE;
$roll = rand(1,6);
$image = "dado_$roll.png";
print <<< HERE
<img src = "$image"
alt = "roll: $roll"
width = "100px"
height = "100px" />
HERE;
$roll = rand(1,6);
$image = "dado_$roll.png";
print <<< HERE
<img src = "$image"
alt = "roll: $roll"
width = "100px"
height = "100px" />
HERE;
$roll = rand(1,6);
$image = "dado_$roll.png";
print <<< HERE
<img src = "$image"
alt = "roll: $roll"
width = "100px"
height = "100px" />
HERE;
$roll = rand(1,6);
$image = "dado_$roll.png";
print <<< HERE
<img src = "$image"
alt = "roll: $roll"
width = "100px"
height = "100px" />
HERE;
?>
</div>
</body>
</html>