Hello guys! I have literally started learning how to code. And I have come to the point when I got to deal with elseif syntax which is not working properly and messes up everything I have done so far. Here's the script
$password = "tulip";
if ($password == "tulip")
{
echo '<b>Hello!</b><br> Welcome to the website Blaise!';
} else {
echo '<b> The password or login is incorrect <br> Please try again </b>';
} elseif ( $password == "daisy")
{
echo '<b> Welcome Kate! </b>;
}
When I type in "daisy" nothing goes on and everything just gets stuck.
Any help or explanation? Thanks