ok i found the problem and made a little change to your code:
your code:
Code:
<html>
<head>
<title></title>
</head>
<style type="text/css">
a:link{
background-color: transparent;
color: #3F3849;
text-decoration: none;
}
a:active{
background-color: transparent;
color: #3F3849;
text-decoration: none;
}
a:visited{
background-color: transparent;
color: #3F3849;
text-decoration: none;
}
a:hover{
background-color: transparent;
color: #3F3849;
font-weight: normal;
text-decoration: underline;
}
</style>
<body bgcolor="#BBBBBB">
<?php
error_reporting(7);
require("./global.php");
echo "<center><font size=\"1\" face=\"verdana\">[<a href='#'>duplicate ip addresses</a>] | [<a href='#pass'>duplicate passwords</a>]</font></center>";
i replaced it with:
Code:
<?php
error_reporting(7);
require("./global.php");
cpheader();
echo "<center><font size=\"1\" face=\"verdana\">[<a href='#'>duplicate ip addresses</a>] | [<a href='#pass'>duplicate passwords</a>]</font></center>";
now it works fine for me
LaNder