Heads up! To view this whole video, sign in with your Courses account or enroll in your free 7-day trial. Sign In Enroll
- Setting Up the Project 3:31
- Using PHP Code on Our Site 3:09
- A Simple PHP Example 1 objective
- Including the Header 5:32
- Including the Footer and Adding Additional Pages 3:19
- Basic PHP and Including Files 5 questions
- Using Variables for the Title Tag 3:24
- Working with _GET Variables 5:10
- Variables and Conditionals 6 questions
- Adding Active States to the Navigation 4:29
- Variables and Conditionals 3 objectives

- 2x 2x
- 1.75x 1.75x
- 1.5x 1.5x
- 1.25x 1.25x
- 1.1x 1.1x
- 1x 1x
- 0.75x 0.75x
- 0.5x 0.5x
We can use conditionals and variables to make further changes to the HTML output on different pages. In this video, we’ll add a new variable and use a conditional to check its value in our main navigation menu.
Update to html
index.php unordered list for our random items should have a class of "items".
<ul class="items">
Preventing Errors
If you forget to add the $section variable to a page, you could see an error. This is why we set "$section = null;" on the index page. If you want to make sure you code works without an error even if $section is not defined, you could include the isset function in you if statement as well.
Example:
if (isset($section) && $section == "books")
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up-
jared garcia
1,295 Points2 Answers
-
jared garcia
1,295 Points1 Answer
View all discussions for this video
Related Discussions
Have questions about this video? Start a discussion with the community and Treehouse staff.
Sign up
You need to sign up for Treehouse in order to download course files.
Sign upYou need to sign up for Treehouse in order to set up Workspace
Sign up