Lesson 7 Errata
I believe step 5 on page 106 has an error. The code in the book is:
<?php
switch (isset($_GET['content'])) :
case 'gents' :
case 'sporting' :
case 'women' :
include 'content/catnav.php';
endswitch;
?>
This always evaluates to 'TRUE', so the catnav.php is always included on all pages. I believe the correct code should be:
<?php
if (isset($_GET['content'])) :
switch ($_GET['content']) :
case 'gents' :
case 'sporting' :
case 'women' :
include 'content/catnav.php';
endswitch;
endif;
?>
I'm really enjoying the book.
Dan McGuffin
|