php code
<ul> <li class="<?php if($page=='home'){echo 'active-new';}?>"><a href="./">Home</a></li> <li class="<?php if($page=='about'){echo 'active-new';}?>"><a href="about.php">About</a></li> <li class="<?php if($page=='prodcuts'){echo 'active-new';}?>"><a href="product.php">Products</a></li> <li class="<?php if($page=='gallery'){echo 'active-new';}?>"><a href="gallery.php">Gallery</a></li> <li class="<?php if($page=='contact'){echo 'active-new';}?>"><a href="contact.php">Contact</a></li> </ul> <?php $page = 'prodcuts'; require_once "includes/header.php" ?> <?php $page = '6'; require_once ...