CODE
<?php $ip=$_SERVER['REMOTE_ADDR'] ?>
But if we want to tell someone's ip we have to do this;
CODE
<b>IP Address= <?php $ip ?></b>
If you just want to have the full thing in PHP we will use this,
CODE
<?php $ip=$_SERVER['REMOTE_ADDR'];
echo "<b>IP Address= $ip</b>"; ?>
echo "<b>IP Address= $ip</b>"; ?>
Live Priview
Have Fun, P.S Is there a tutorial section? o.O
