![]() |
|
|
+ Search |
![]()
|
Feb 10th, 2003 02:33
Klaus Bolwin, Kelvin Chan,
You can use SSI to look for a certain user, which must be logged on:
<script type="text/javascript">
anchors = document.getElementsByTagName("a");
user = <!--#echo var="REMOTE_USER" -->;
// insert code to determine the index for the array "anchors"
if (user != "Kelvin Chan") anchors[i].href = "#";
else anchors[i].href = "./kelvin.html";
</script>