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 trialAkasha Fryman
2,068 PointsWhen placing PHP start and end code inside of CSS class quotation marks, I get a Parse error.
Putting the below PHP code into the class=" " area causes this error: Parse error: syntax error, unexpected '=' in /includes/header.php on line 16.
Line 16 is the second line below. I believe it's referring specifically to the ($section == "books").
I copied this formatting directly from the video, and it creates this error in my browser...very strange.
<ul class="nav">
<li class="books<?php if ($section == "books") { echo = " on"; } ?>"><a href="catalog.php?cat=books">Books</a></li>
<li class="movies<?php if ($section == "movies") { echo = " on"; } ?>"><a href="catalog.php?cat=movies">Movies</a></li>
<li class="music<?php if ($section == "music") { echo = " on"; } ?>"><a href="catalog.php?cat=music">Music</a></li>
<li class="suggest<?php if ($section == "suggest") { echo = " on"; } ?>"><a href="suggest.php">Suggest</a></li>
</ul>
1 Answer
Ben Schroeder
22,818 PointsGet rid of the equals sign after echo.
<li class="books<?php if ($section == "books") { echo " on"; } ?>"><a href="catalog.php?cat=books">Books</a></li>