IP ADDRESS
In a PHP page, within the PHP tags, <?php … ?>, we can retrieve the IP address of a user through the server variables, which contains information about the user and the server,which is accessible from anywhere in your PHP script.
Display The IP Address
=================
<?php
Your IP Address is : ” . $_SERVER[’REMOTE_ADDR’];
?>
