Topic: CSS class for active nav link
How about adding a css class for the 'active' navigation link?
Ie, when you're viewing the index:
<ul>
<li id="navindex" class="active"><a href="index.php">Index</a></li>
<li id="navuserlist"><a href="userlist.php">User list</a></li>
<li id="navsearch"><a href="search.php">Search</a></li>
<li id="navprofile"><a href="profile.php?id=2">Profile</a></li>
<li id="navadmin"><a href="admin_index.php">Administration</a></li>
<li id="navlogout"><a href="login.php?action=out&id=2">Logout</a></li>
</ul>
Would be nice to make the active link underlined or bold with a simple CSS style.