Forum Moderators: coopster
file 1:
<html>
<body>
<script language="php">
$remoteip = getenv("REMOTE_ADDR");
</script>
<a href="two.php?myip=$remoteip">Referers</a>
</body>
</html>
file 2:
<html>
<body>
<script language="php">
$remoteip = urlencode($myip);
echo $remoteip;
</script>
</body>
</html>
The second file, does not print the IP of the visitor whihc is captured in file No. 1
Please help :(
Aamir