Show IP Address
Use this small PHP script to show the IP address of the user at your site. For example: This is your IP address: 38.103.63.61
Just copy and paste the following code where you want it to appear. Change the "Your IP:" to whatever you want it to display.
<?php echo "Your IP: " . $_SERVER["REMOTE_ADDR"]; ?>
Back