Quiz Question 1 of 5
What will be displayed in a browser when the following PHP code is executed:
$username = "Treehouse";
if ($username) {
if ($username != "Treehouse") {
echo "Hello $username";
}
} else {
echo "You must be logged in";
}
Choose the correct answer below: