QUOTE(klusk @ Feb 19 2008, 03:29 PM)

register a domain name for your IP address .....you can get a free account at DynDNS..then use a dynamic DNS update client to update your DNS automatically
you just have to remember the domain name...whenever your IP changes, the update client will register it automatically.
This is a great solution! although there are easier ways.... i notice your sig says you are a very adaptable programmer to many languages.... i'm sure you would know a solution then? oh well.... here's a decent one:
If you leave your computer in idle at home (on, with a low power state) you can create a simple php script and redirect itself to the same page every hour or so (leave a web browser open on this page). In the page, have it use the fopen() and fwrite() command to write the $_SERVER['REMOTE_ADDR'] (your computer's ip) to a log file every refresh. once this log file is getting very large, simply clear it via FTP and upload a blank one, or with fwrite, use "a" so you can simply pop open FTP and delete it, and the next hour it will create a new one and start writing your ip to it again. then all you have to do it simply type in the url to the script's log file (like
http://yoursite.com/iplog.txt) and view the latest one!
hope this helps!
Reply