I'm buying a Playstation 3 to use as a footrest while playing my XBox 360!
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Assignment044</title>
</head>
<body>
<?php
//Gift certificates are given in denominations of
//50, 100, 200, 400, 500, or 1000
//Based on the of the certificate you are
//going shopping and/or out with your honey.
//set the variable to 500
$giftdollars=500;
switch ($giftdollars)
{
case 50: //case 50 and case 100 will produce the same result.
case 100:
print("I can buy shoes!");
break;
case 200:
print("I can buy shoes and an outfit!");
break;
case 300:
print("I can buy shoes, an outfit, and tickets to a play!");
break;
case 400:
print("I can buy shoes, an outfit, tickets to a play, and a weekend getaway!");
break;
default:
print("I'm buying a Playstation 3 to use as a footrest while playing my XBox 360!");
}
print show_source("Assignment044.php");
?>
</body>
</html>
1