Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Building-Web-Applications-in-PHP/Assignment-06/guess.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Guessing Game for Ivan Neradovic d04863f1</title>
<title>Guessing Game for POOJITHA C NAIR 125afb06</title>
</head>
<body>
<h1>Welcome to my guessing game</h1>
Expand All @@ -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");
}
Expand Down