GeoIP on wordpress, ( not working )

552 Views Asked by At

I am trying to show a specific content base on the user Country IP, when doing a search i have found the below script. But without success! So what i am trying to do is when a user visit my website ( in this case: "AL" ) to not show this content.

<?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

There are 0 best solutions below