
PHP Browser Information
Example
38.107.191.100CCBot/1.0 (+http://www.commoncrawl.org/bot.html)
HTTP's default port number is: 80
Script Source
<?php
echo $_SERVER['REMOTE_ADDR']; // gets the ip address
echo "<br/>";
echo $_SERVER['HTTP_USER_AGENT'] . "\n\n"; // displays your browser information
echo "<br/>";
echo $_SERVER['HTTP_REFERER'] . "\n\n"; // gives you information on where you came from
echo "<br/>";
echo "HTTP's default port number is: ".getservbyname("http", "tcp"); // displays your default port number
echo "<br/>";
?>
Please let me know if this script was helpful to you.
[rating]