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 trialAakash Srivastava
5,415 PointsAdding active states to the Navigation
I am wondering :
Why do we need to add $section = null
to index.php
?
When $suggest
variable doesn't exist in index.php
file , none of the link should be underlined , but instead all the links are getting underlined.
Why?
Thanks
Christian Schou
9,208 PointsChristian Schou
9,208 PointsHi Aakash,
It is because the server sees the value as true, when we don't specify the $section value to null / false in this case. So when not defining the section to be "turned off" it will automatically set the variable to true and insert the " on" text for the CSS class.
Hope this helps you :)