Lithium381
Lifer
What I want to accomplish is to always know my house's IP Address and be able to access it over the internet from wherever i may be. I'm on DSL so it's a dynamically assigned IP. I have a place I can host online. Basically I want my computer at home to constantly load a php document on my web-host that grabs the IP and writes it to an html file that i can load up remotely and see what it is at any given moment. something like just leave a firefox window up to a page:
-----------------------
<meta reload=10 minutes>
$ip=@$REMOTE_ADDR;
write to "myip.html"
-------------------
then i can load myip.html and i should be good to go.
questions: I've never coded PHP but it doesn't look terribly difficult, and lots of documentation online. is there a more elegant solution to this? is there a script or a command line that i can pass to firefox to load the page, then close the window?
-----------------------
<meta reload=10 minutes>
$ip=@$REMOTE_ADDR;
write to "myip.html"
-------------------
then i can load myip.html and i should be good to go.
questions: I've never coded PHP but it doesn't look terribly difficult, and lots of documentation online. is there a more elegant solution to this? is there a script or a command line that i can pass to firefox to load the page, then close the window?