Page 1 of 1

What is my IP address?

Posted: Wed Dec 08, 2021 7:53 pm
by Jacob
I created a new webpage that shows you your public IP address. As the webmaster of deltafoxdesign.com I created this mostly for myself so I can see what IP address I am using when I visit the web site. This is especially useful for me when I troubleshoot access to the website with Tor.

You can visit it at https://www.deltafoxdesign.com/ip

Jacob Persico
Owner & Webmaster

Re: What is my IP address?

Posted: Wed Dec 08, 2021 8:54 pm
by Jacob
Note that that page uses the following PHP code to display your IP address:

Code: Select all

<?php
echo "<p>Your IP address is: ".$_SERVER['REMOTE_ADDR']."</p>\n";
?>