Created
April 25, 2019 23:11
-
-
Save Hurricane996/ff932f98ca0638e66f9c927bb71e55a4 to your computer and use it in GitHub Desktop.
My solution to my lack of fixed ip on my home network
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
$file = fopen("ip.txt",'w'); | |
fwrite($file, $_SERVER["REMOTE_ADDR"]); | |
fclose($file); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment