any one have an script for a whatsmyip kinda site?

DeadBattery

Community Support Team
Community Support
Messages
4,018
Reaction score
120
Points
0
Do you mean one like
http://x10status.uni.cx/myip.php
?

I just used
PHP:
<html>
<head>
<title>What's My IP?</title>
</head>
<body>
<?php
$ip=$_SERVER['REMOTE_ADDR']; 
echo "<center><h2><font face='Verdana' size='3'><b>Your IP is: $ip</b></h2></center>";
?>
</body>
</html>
:)
 
Top