Show Ip Addresses

This php code enables you to show your visitors their IP address. Below is an example of how it works.
Your IP address: 38.107.179.212

1. Copy this code under and paste it where you want it to show.

<?php
echo "Your IP address: " . $_SERVER["REMOTE_ADDR"];
 ?>