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 Simple PHP Application Creating the Menu and Footer Adding Active States to the Navigation

Problem 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

Well, I recommended myself to add

$section = "";

in the index.php

Thanks

why 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.

I added $section = "index"; on index.php for consistency, but you could handle it a number of different ways.

Great find, I was just sitting here trying to figure that out!

awesome, thanks!

or you could add isset($section) && to the if statement this will also work. if(isset($section) && $section == "shirts"){echo " on";}

Or you could make it equal to "home" since it is the home page. But great question, I was confused myself at first.