Forum Moderators: coopster
<?php $thisPage="About"; ?> <div id="navigation">
<a id="logo" href="http://www.example.com"><img src="http://www.example.com/img/logo.gif" alt="Home" /></a>
<ul>
<?php if ($thisPage == "About")
{echo "<li class=\"selected\">about</li>";}
else
{echo "<li><a href=\"http://www.example.com/about.php\">about</a></li>";}
?>
<?php if ($thisPage == "Resellers")
{echo "<li class=\"selected\">resellers</li>";}
else
{echo "<li><a href=\"http://www.example.com/resellers.php\">resellers</a></li>";}
?>
</ul>
</div> [edited by: eelixduppy at 11:47 pm (utc) on Apr 15, 2010]
[edit reason] exemplified [/edit]
<?php
$$thisPage = 'class="selected"';
?>
<div id="navigation">
<a id="logo" href="http://www.example.com"><img src="http://www.example.com/img/logo.gif" alt="Home" /></a>
<ul>
<li <?=$About?>><a href="http://www.example.com/about.php">about</a></li>
<li <?=$Resellers?>><a href="http://www.example.com/resellers.php">resellers</a></li>
</ul>
</div>
[edited by: eelixduppy at 11:48 pm (utc) on Apr 15, 2010]
[edit reason] exemplified [/edit]
<?php if ($thisPage == "About")
<?php $thisPage="page_title"; ?>