A game of rock, paper, scissors written in PHP within a HTML document.
Using an array to list the options to choose from when the User and Computer says 'SHOOT'.
$choose = array("Rock", "Paper", "Scissors");
This will request any selection from the form with the method "POST" to be sent to this if statement.
if($_SERVER["REQUEST_METHOD"] == "POST")