
<html>
<font size=5><center>
<?php

include("geoip.inc");
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
$ip=$_SERVER['REMOTE_ADDR'];
$code = geoip_country_code_by_addr($gi, $ip);
geoip_close($gi);

if ($code=="HU" || $code=="BE")
{
	$file = file_get_contents('./notbuy.dat',0);
}
else
{
	$file = file_get_contents('./buy.dat',0);
};

echo $file;
die();
	
?>

