Monday, April 28, 2014

HTML5 FOR IE

https://code.google.com/p/html5shiv/

Get City State from Hostip.info

$test=false;
$ip='63.172.12.36';
$ip='12.215.42.19';
$test ? $ip='12.215.42.19' : $ip=$_ENV['REMOTE_ADDR'] ;
$lines = explode("\n", str_replace("\r", "", file_get_contents("http://api.hostip.info/rough.php?ip=".$ip)));
$city=explode(':',$lines[2]);
preg_match('/Unknown/i', $city[1], $matches);
count($matches)==0 ? $print=true : $print=false;
if($print) { print "Hello ".$city[1]; }