Results 1 to 1 of 1
-
28th Sep 2010, 07:26 PM #1OPMemberWebsite's:
Elite.SO Defendos.com Motionite.com[PHP] Stone, Paper, Scissor Game! (Opensource)
Hello, I was bored and made this for fun.
It's kinda sad
Play Stone, Paper, Scisser against the Computer!
DEMO: http://xcoderz.net/examples/sps.php
Source:
PHP Code:<?php
// Stone/Paper/Scissor v1
// SPS.PHP - Coded by l0calh0st!
function play($play_1, $play_2, $won = array(1, 2, 0)){
return ($play_1 != $play_2) ? ($won[$play_1] == $play_2) ? 1 : 0 : 2 ;
}
if (isset($_POST['submit'])){
$you = $_POST['keuze'];
$computer = rand(0, 2);
echo '<strong>';
echo 'The computer had ';
if ($computer == 0){
echo 'stone';
}elseif ($computer == 1){
echo 'scissor';
}elseif ($computer == 2){
echo 'paper';
}
echo ' and you had ';
if ($you == 0){
echo 'stone';
}elseif ($you == 1){
echo 'scissor';
}elseif ($you == 2){
echo 'paper';
}
echo '</strong>';
echo '<br /><br />';
if(play($you, $computer) == 0){
echo '<span style="color: red;">LOST!</span>';
}elseif(play($you, $computer) == 1){
echo '<span style="color: green;">WON!</span>';
}elseif(play($you, $computer) == 2){
echo '<span style="color: black;">DRAW!</span>';
}
echo '<br /><br />';
echo '<a href="' . $_SERVER['PHP_SELF'] . '">Play again!</a>';
}else{
?>
<form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
<h3><em>Stone, Paper, Scissor!</em></h3>
Make your choice:
<select name="keuze">
<option value="0">Stone</option>
<option value="1">Scissor</option>
<option value="2">Paper</option>
</select>
<br /><br />
<input type="submit" name="submit" value="Play!">
</form>
<?php
}
?>l0calh0st Reviewed by l0calh0st on . [PHP] Stone, Paper, Scissor Game! (Opensource) Hello, I was bored and made this for fun. It's kinda sad :| Play Stone, Paper, Scisser against the Computer! DEMO: http://xcoderz.net/examples/sps.php Source: <?php Rating: 5
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Removing stone from Kidney
By jooker in forum General DiscussionReplies: 8Last Post: 2nd Mar 2012, 03:49 AM -
Research Paper HELP
By ViCiOuS in forum General DiscussionReplies: 2Last Post: 27th May 2011, 11:25 PM -
Joss Stone on sharing music
By Daniel in forum News & Current EventsReplies: 2Last Post: 17th Jan 2011, 03:50 PM -
Stone-Pics idea
By zeeypeewee in forum Webmaster DiscussionReplies: 0Last Post: 4th Mar 2010, 02:05 PM -
Review Stone-Pics.com
By zeeypeewee in forum Site ReviewsReplies: 5Last Post: 4th Mar 2010, 01:11 PM
themaManager - edit and manage...
Version 4.20 released. Open older version (or...