Rock, paper, scissors
Auteur: GTW - 21 mei 2006 - 09:41 - Gekeurd door: nemesiskoen - Hits: 7462 - Aantal punten: 3.46 (14 stemmen)
Je maakt het bestand aan, zet het online, en je kunt spelen.
zo simpel is het.
je kunt het bestand noemen zoals je wilt, omdat je wordt terugverwezen naar de referer, oftewel, de hoofdpagina van dit script
|
Code: |
<!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>Rock, Paper, scissors</title>
</head>
<body>
<center>
<?php
if(isset($_POST['submit'])){
$actions = array("paper", "rock", "scissors");
$mogelijkheden = array("paper" => 1, "rock" => 2, "scissors" => 4);
$speler = $mogelijkheden[$_POST['rps']];
$c = $actions[rand(0,2)];
$comp = $mogelijkheden[$c];
$gewonnen = ((($speler > $comp && $comp / $speler != 0.5) || $speler / $comp == 0.5) && $comp != $speler);
if($gewonnen){
?>
<font color="green">
Je hebt gewonnen!<br />
Gefeliciteerd
</font>
<?php
}
elseif($speler == $comp){
?>
Jullie hadden dezelfde actie,<br />
Gelijkspel
<?php
}
else{
?>
<font color="red">Je hebt verloren!</font>
<?php
}
?>
<br /><br />
<table>
<tr>
<td width="50%">Jouw actie:</td>
<td><?=ucfirst($_POST['rps']); ?></td>
</tr>
<tr>
<td>Pc actie:</td>
<td><?=ucfirst($c); ?></td>
</tr>
</table>
<br /><br />
<a href="<?=$_SERVER['HTTP_REFERER']; ?>">Begin opnieuw</a>
<?php
exit();
}
?>
Welkom bij Rock, paper, scissors<br />
<br />
<table>
<form name="rps" action="?action" method="post">
<tr>
<td><input type="radio" name="rps" value="paper" /></td>
<td align="left">Paper</td>
</tr>
<tr>
<td width="50%"><input type="radio" name="rps" value="rock" /></td>
<td align="left">Rock</td>
</tr>
<tr>
<td><input type="radio" name="rps" value="scissors" /></td>
<td align="left"><label for="scissors">Scissors</label></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="submit" value="Strijd" /></td>
</tr>
</form>
</table>
</center>
</body>
</html>
<!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>Rock, Paper, scissors</title> </head> <body> <center> <?php if(isset($_POST['submit'])){ $actions = array("paper", "rock", "scissors"); $mogelijkheden = array("paper" => 1, "rock" => 2, "scissors" => 4); $speler = $mogelijkheden[$_POST['rps']]; $c = $actions[rand(0,2)]; $comp = $mogelijkheden[$c]; $gewonnen = ((($speler > $comp && $comp / $speler != 0.5) || $speler / $comp == 0.5) && $comp != $speler); if($gewonnen){ ?> <font color="green"> Je hebt gewonnen!<br /> Gefeliciteerd </font> <?php } elseif($speler == $comp){ ?> Jullie hadden dezelfde actie,<br /> Gelijkspel <?php } else{ ?> <font color="red">Je hebt verloren!</font> <?php } ?> <br /><br /> <table> <tr> <td width="50%">Jouw actie:</td> <td> <?=ucfirst($_POST['rps']); ?></td> </tr> <tr> <td>Pc actie:</td> </tr> </table> <br /><br /> <a href="<?=$_SERVER['HTTP_REFERER']; ?>">Begin opnieuw</a> <?php } ?> Welkom bij Rock, paper, scissors<br /> <br /> <table> <form name="rps" action="?action" method="post"> <tr> <td><input type="radio" name="rps" value="paper" /></td> <td align="left">Paper</td> </tr> <tr> <td width="50%"><input type="radio" name="rps" value="rock" /></td> <td align="left">Rock</td> </tr> <tr> <td><input type="radio" name="rps" value="scissors" /></td> <td align="left"><label for="scissors">Scissors</label></td> </tr> <tr> <td colspan="2"><input type="submit" name="submit" value="Strijd" /></td> </tr> </form> </table> </center> </body> </html>
Download code (.txt)
|
|
|
Stemmen |
Niet ingelogd. |
|