Skip to content

Instantly share code, notes, and snippets.

@Hurricane996
Created April 25, 2019 23:11
Show Gist options
  • Save Hurricane996/ff932f98ca0638e66f9c927bb71e55a4 to your computer and use it in GitHub Desktop.
Save Hurricane996/ff932f98ca0638e66f9c927bb71e55a4 to your computer and use it in GitHub Desktop.
My solution to my lack of fixed ip on my home network
<?
$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