<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<?php
$GIjoe = 'Snake Eyes';
switch($GIjoe):
case 'Lady Jane':
echo 'Baroness is hotter';
break;
case 'Duke':
echo 'Dead in thirty minutes';
break;
case 'Snake Eyes':
echo 'Silence is deadly';
break;
default:
echo 'Bruce ain\'t no Joe';
endswitch;
?>
</body>
</html>
No comments:
Post a Comment