The following snippet show your user’s their IP address when visited the website.

 <?php
    //Gets the IP address
    $ip = getenv("REMOTE_ADDR") ;
    Echo "Your IP is " . $ip;
 ?>
 

Leave a Comment