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 trialBoris Vukobrat
4,248 PointsProblem with index page
I think we have a problem with index page. When index.php is loaded, it includes header.php. But there is no $section
variable definition in the index page, so an error occurs.
6 Answers
Boris Vukobrat
4,248 PointsWell, I recommended myself to add
$section = "";
in the index.php
Matt Hosch
5,854 PointsI added $section = "index"; on index.php for consistency, but you could handle it a number of different ways.
Kenneth Hall
3,452 PointsGreat find, I was just sitting here trying to figure that out!
Jonathan Söder
7,428 Pointsawesome, thanks!
shawn stokes
5,651 Pointsor you could add
isset($section) &&
to the if statement this will also work.
if(isset($section) && $section == "shirts"){echo " on";}
Aaron Munoz
11,177 PointsOr you could make it equal to "home" since it is the home page. But great question, I was confused myself at first.
Travis Stewart
15,188 PointsTravis Stewart
15,188 PointsThanks
piotr nowik
Courses Plus Student 560 Pointspiotr nowik
Courses Plus Student 560 Pointswhy do you think is that necessary to create that empty $section variable? does it mean that the page is loaded before the "include" command is executed? It wouldn't make sense.