April 30th, 2008, 11:57 PM
|
#2 (permalink)
|
| SoMuchAnime-SoLittleTime
Join Date: Aug 2003 Location: Plymouth, WI
Posts: 14,984
|
I don't think you can do that with just HTML.
You'd need to use something like PHP, or maybe you could even do it with Javascript.
If you have PHP, you can just use something like: Code: <?php
echo (!empty($_SERVER['REMOTE_ADDR'])) ? $_SERVER['REMOTE_ADDR'] : 'Could not get IP address';
?>
|
| |