Hi guys,
New user, glad to be here. I have one issue i need a little assist on. I am using the PHP active link color change-hack from a list apart. The code is an instance like this repeated once for every link to a subpage in the menu:
<li<?php if ($thisPage=="index")
echo " class=\"currentpage\""; ?>>
<a href="index.php">START</a></li>
Each subpage has a variable attached to it as $currentpage="your-pagename-here" so it can be uniquely identified, The above code checks the value of $currentpage and changes the color on the active site subpage link in the menu before the content is sent to the requester. Thats all good and well, if you have a separate html page that loads fresh for each and every subpage on your site.
My question is this: How do I do this, if I only have one html page, and dynamically swap the the content of the centercolumn into that same page?
Thanx for reading my post, hope you can help out.
C-ya.