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