Jump to content

*SOLVED* No Text


JackJack

Recommended Posts

When I Upload It And Try It Out It Doesnt Work. When I click the image It Doesn't do Anything.

Plz Help

Thank You


<?php


$computer = rand(1,3);
{
if ($computer == 1) $choice = 'rock' ;
if ($computer == 2) $choice = 'paper' ;
if ($computer == 3) $choice = 'scissors' ;
}

$action = $_POST[action];


if ($action == 'rock' && $choice == 'rock') {

echo "No One Wins";
exit;
}
if ($action == 'rock' && $choice == 'paper') {

echo "You Lose";
exit;
}
if ($action == 'rock' && $choice == 'scissors') {

echo "You Win";
exit;
}
if ($action == 'paper' && $choice == 'rock') {

echo "You Win";
exit;
}
if ($action == 'paper' && $choice == 'scissors') {

echo "You Lose";
exit;
}
if ($action == 'paper' && $choice == 'paper') {

echo "No One Wins";
exit;
}
if ($action == 'scissors' && $choice == 'rock') {

echo "You Losed";
exit;
}
if ($action == 'scissors' && $choice == 'paper') {

echo "You Win";
exit;
}
if ($action == 'scissors' && $choice == 'scissors') {

echo "No One Wins";
exit;
}
?>
<html>
<a href='http://www.battlemachines.net/test/rps.php?action=rock'><img src='http://www.battlemachines.net/test/rock.bmp'></a>
<br>
<a href='http://www.battlemachines.net/test/rps.php?action=paper'><img src='http://www.battlemachines.net/test/paper.bmp'></a>
<br>
<a href='http://www.battlemachines.net/test/rps.php?action=scissors'><img src='http://www.battlemachines.net/test/scissors.bmp'></a>
</html>
Link to comment
https://forums.phpfreaks.com/topic/6281-solved-no-text/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.