YOUR IP / BROWSER / HOST NAME AND CONFIGURATION

Internet connection parameters

Your IP Address: 38.107.179.229 (Internet Protocol Address) >>

<?php
echo $_SERVER['REMOTE_ADDR'];
?>

Your host name 38.107.179.229 >>

<?php
echo gethostbyaddr($_SERVER['REMOTE_ADDR']);
?>

Connection type: close >>

<?php
echo $_SERVER['HTTP_CONNECTION'];
?>

Browser parameters

Your web browser is: CCBot/1.0 (+http://www.commoncrawl.org/bot.html) >>

<?php
echo $_SERVER['HTTP_USER_AGENT'];
?>

Your web browser is: >>

abc

Your web browser width / height is: x >>

var sw=0; // browser width
var sh=0; // browser height
if(typeof(window.innerWidth)=='number'){
	sw=window.innerWidth;
	sh=window.innerHeight;
} 
else if(document.documentElement
&&(document.documentElement.clientWidth
||document.documentElement.clientHeight)){
	sw=document.documentElement.clientWidth;
	sh=document.documentElement.clientHeight;
}
else if(document.body
&&(document.body.clientWidth
||document.body.clientHeight)){
	sw=document.body.clientWidth;
	sh=document.body.clientHeight;
}