Lucky Dice Game
"Try your luck at rolling a nine today"
- First roll is a 1
- Second roll is a 4
- Your total is 5 !
Sorry
LzyDaz Designs
www.lzydaz.com
"Try your luck at rolling a nine today"
Sorry
Bonnie Lincicome © 2010 All Rights Reserved
This page was last updated on December 14, 2008 08:14:07
Source for Game Code
<?php
$die = 12;
$dice1 = rand(1,6);
$dice2 = rand(1,6);
$total = $dice1 + $dice2;//starting total
?>
<ul>
<li>First roll is a <?php echo $dice1; ?></li>
<li>Second roll is a <?php echo $dice2; ?></li>
<li> Your total is <?php echo $total; ?> !</li>
</ul>
<p>
<?php
if($total=="2"){
echo "Snake Eyes!";
}//endif
elseif ($total=="9")
echo "Congradulations You Won!";
else {
echo "Sorry";
}
?>
</p>
<p><a href="game.php">ROLL again</a></p>
<?php $siteName = 'LzyDaz Designs<br /><em><span class="white-text">www.lzydaz.com</span></em>'; ?>
<?php include('includes/arrayImage.php'); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Dice Game</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<link href="../common/site.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="head">
<p><?php echo $siteName; ?></p>
</div><!--close #head-->
<div id="wrap">
<div id="content">
<div id="bar-nav">
<?php include($_SERVER['DOCUMENT_ROOT'] . '/lvs/php101/includes/bar-nav.php'); ?>
</div><!--close bar-nav-->
<div id="navcontainer">
<ul>
<li><a href="../week2.php" title="Return to Main">Main</a></li>
<li><a href="calculations.php" title="Super Sale!">Sale</a></li>
<li class="last"><a href="gallery.php" title="Photos">Gallery</a></li>
</ul>
</div><!-- close navcontainer -->
<div id="right-container" class="pad">
<img src="../images/dice.jpg" width="100" height="105" alt="dice" />
</div><!--close #right-container-->
<h1>Lucky Dice Game</h1>
<p>"Try your luck at rolling a nine today"</p>
<?php include('includes/dice-game.php'); ?>
</div><!--close #content-->
</div><!--close #wrap-->
<div id="foot">
<?php include($_SERVER['DOCUMENT_ROOT'] . '/lvs/php101/includes/copyright.php'); ?>
</div><!--close #foot-->
<div id="source">
<?php echo phpversion(); ?>
<hr />
<p>Source for Game Code</p>
<?php show_source('includes/dice-game.php'); ?>
<hr />
<?php show_source('game.php'); ?>
</div><!--close #source-->
</body>
</html>