wordpress上的GeoIP,(不工作)

时间:2013-12-04 18:19:26

标签: php geoip

我试图在用户国家IP上显示特定内容,在进行搜索时我找到了以下脚本。但没有成功!所以我要做的是当用户访问我的网站时(在这种情况下:“AL”)不显示此内容。

<?php
require_once("geoip.inc");
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
$country_code = geoip_country_code_by_addr($gi, $_SERVER['REMOTE_ADDR']);
geoip_close($gi);
if($country_code == "AL")
{
echo ' ';
} else {
echo '
<div id="sendframe" style="position: absolute; opacity:1.0;filter:alpha(opacity=1);">

//Here will be placed the comment...

</div>';
}
?>

0 个答案:

没有答案