From 8b5ad66791bb075cedc0a0b5ce41e5e89b84b8d0 Mon Sep 17 00:00:00 2001 From: Poojithanair <44025893+Poojithanair@users.noreply.github.com> Date: Wed, 25 Mar 2020 12:37:34 +0530 Subject: [PATCH] Update guess.php --- Building-Web-Applications-in-PHP/Assignment-06/guess.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Building-Web-Applications-in-PHP/Assignment-06/guess.php b/Building-Web-Applications-in-PHP/Assignment-06/guess.php index 03096d4..7ded18b 100644 --- a/Building-Web-Applications-in-PHP/Assignment-06/guess.php +++ b/Building-Web-Applications-in-PHP/Assignment-06/guess.php @@ -3,7 +3,7 @@ - Guessing Game for Ivan Neradovic d04863f1 + Guessing Game for POOJITHA C NAIR 125afb06

Welcome to my guessing game

@@ -21,11 +21,11 @@ { echo("Your guess is not a number"); } - else if ( $_GET['guess'] < 28 ) + else if ( $_GET['guess'] < 18 ) { echo("Your guess is too low"); } - else if ( $_GET['guess'] > 28 ) + else if ( $_GET['guess'] > 18 ) { echo("Your guess is too high"); }