PHP only
Suppose your website has the following menu:
At the top of the HTML home page, paste:
<?php $this_page = "Home"; ?>
At the top of the HTML Pistols page, type:
<?php $this_page = "Pistols"; ?>
At the top of the HTML Rifles page, type:
<?php $this_page = "Rifles"; ?>
css , . #cur_item, .
HTML- :
<ul class="navigation">
<li <?php if ($this_page == "Home"):?> id="cur_item" <?php endif; ?> >
Home
</li>
<li <?php if ($this_page == "Pistols"):?> id="cur_item" <?php endif; ?> >
Pistols
</li>
<li <?php if ($this_page == "Rifles"):?> id="cur_item" <?php endif; ?> >
Rifles
</li>
</ul>