So, here's an example line in header.php
<li <?php if ($pageTitle=="Home") echo 'class="active"'; ?>><a href="index.php">Home</a></li>
Here is what I do at the top of each page of the site
<?php $pageTitle = 'Internet'; require_once('header.php'); ?>
Now, I have a drop down. How would I do if the title is Web Hosting or Virtual Private Servers or Dedicated Servers to active it.
li <?php if ($pageTitle=="Web Hosting") echo 'class="active"'; ?> class="dropdown">
Thanks!
<li <?php if ($pageTitle=="Home") echo 'class="active"'; ?>><a href="index.php">Home</a></li>
Here is what I do at the top of each page of the site
<?php $pageTitle = 'Internet'; require_once('header.php'); ?>
Now, I have a drop down. How would I do if the title is Web Hosting or Virtual Private Servers or Dedicated Servers to active it.
li <?php if ($pageTitle=="Web Hosting") echo 'class="active"'; ?> class="dropdown">
Thanks!