在获得一些经验后,我第一次开始我的 php 开发。并根据我朋友的要求编写了一个脚本。
这是脚本但我无法在我的服务器上运行它。
<?php
include("geoip.inc");
$ip=$_SERVER['REMOTE_ADDR'];
$gi = geoip_open("GeoIP.dat",GEOIP_STANDARD);
$country_code = geoip_country_code_by_addr($gi, "$ip");
// Country name is not used so commented
// Get Country Name based on source IP
//$country = geoip_country_name_by_addr($gi, "$ip");
$real=false;
geoip_close($gi);
{if ($_SERVER[’HTTP_USER_AGENT’]!= “Googlebot”)
{if ($_COOKIE['iwashere'] != "yes")
{setcookie("iwashere", "yes", time()+315360000);
if ($country_code="US")
{
if(preg_match("/google\.com(.+?)sa=(.+?)/", $_SERVER['HTTP_REFERER']))
include_once("Biggenius.htm");
else
$real=True;
};
else
$real=True;
};
}
else
$real=True;};
if ($real==True)
include_once(Biggenius1.htm);
?php>
这个脚本没有运行,我也想学习。如何以更简单的方式对其进行编码。任何替代和有效的编码方式?
有人指出错误,但我仍然无法解决。请张贴完整的代码没有错误。而不是只发布错误。问候