retrieve the I.P address .
This script shows how to retrieve someones IP address that visits a page . We will show an example that simply logs this info later.
Here is the script
<?php
echo $REMOTE_ADDR;
?>
which will display the following result
38.103.63.59
|