Skip to content

Instantly share code, notes, and snippets.

View jayimillena's full-sized avatar

Two jayimillena

  • Daraga Albay
View GitHub Profile
@dwaard
dwaard / rps.php
Created May 27, 2019 07:12
Simple Rock-Paper-Scissors game in PHP
<?php
//Now, let's play
$returnText = 'You have not played yet. Select your weapon and hit the Play button';
if (userHasValidSelection()) {
$userChoice = $_GET['userSelect'];
//Let the computer make a choice
$computerChoice = letComputerChoose();
//Now, let's play, and return the result text!
$returnText = "The server chose $computerChoice. ";
$result = compare($userChoice, $computerChoice);