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 Build a Basic PHP Website (2018) Building a Media Library in PHP Adding Active States to the Navigation

Nikolay Komolov
Nikolay Komolov
23,033 Points

Why, when omitting "$section=null", are all links underlined?

Hello everyone :)

Could you explain to me, please, why are all the links underlined when no "$section=null" is set in "index.html"?

Thanks!

1 Answer

Chung-Jun Wang
Chung-Jun Wang
3,718 Points

If you do not add $section=null in index.html, then when it include header.php, variable $section is not defined.

So the condition in header.php <?php if($section == “books”){echo “on”;} ?> will fail because PHP can not compare the value, more precisely if($section == “anything”) always become true, then what PHP do is simply echo "on" no matter what value $section is.

So in the header every link will has class "on" which means they are all underlined.