Yes, this is easy.
Say you have four scripts:
index.php
forum.php
book.php
contact.php
Then, in the menu, you use this:
<?php
$name_of_this_file = basename($PHP_SELF);
if($name_of_this_file == "index.php"){
echo "<B><A HREF="index.php">Index</A></B>
}else{
echo "<A HREF="index.php">Index</A>
}
if($name_of_this_file == "forum.php"){
echo "<B><A HREF="forum.php">Forum</A></B>
}else{
echo "<A HREF="forum.php">Forum</B>
}
/ Same goes for any other script. You check the filename, obatined from basename($PHP_SELF) /
?>
Hope this helps
fLIPIS