Skip to content

jmathtech/rockpaperscissors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Rock, Paper, Scissors

A game of rock, paper, scissors written in PHP within a HTML document.

DEMO

What I've learned

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") 

Example (screenshot)

image