Computing and IT Support Forums

PHP - How to get visitor's IP address

samia - Apr 21, 2008 - 04:22 PM
Post subject: How to get visitor's IP address
where can i see the ip`s after i add the cod to my site
h8dk97 - Apr 22, 2008 - 01:52 PM
Post subject: How to get visitor's IP address
You can do something like this

Code:

<?php

$ip_address = getenv("REMOTE_ADDR");

echo "<p>" . $ip_address . "</p>";

?>

All times are GMT