Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP PHP Arrays and Control Structures PHP Conditionals Conditionals

If ($username) is what?

Hi.

I don't quite understand this if statement. I would expect it to be if ($username = x) or something like that. It's probably related to the line below, but I don't quite see the relation.

1 Answer

Alan Jaffery
Alan Jaffery
4,803 Points

Hi Jakob Tolstrup,

if ($username) is a check if there is content to $username. So the answers can be true or false. It the quiz it is true so the next if ($username != "Treehouse") will be checked.

Hope i could help you. Kind regards, Alan

  • the answer of that quiz question is "Nothing will be displayed" :)