Created
June 5, 2018 01:29
-
-
Save JacquesInnocent/dcb95456725da770888860a7afdc119e to your computer and use it in GitHub Desktop.
Snippet for retrieving user's IP address in PHP.
This file contains 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
public function UserIP() { | |
$ip_address = $_SERVER['REMOTE_ADDR']; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment