Размер файла: 2.25Kb
<?php
define("MYSQLHOST", "localhost");
define("DBNAME", "fank");
define("DBUSER", "fank");
define("DBPASS", "fank");
$botson=0; //Включены боты или нет : 1 да, 0 нет
//PROTECTION
if(strpos($_SERVER['HTTP_USER_AGENT'], "'") !== false) die();
if(substr($_SERVER['HTTP_USER_AGENT'], 0 , 7) == "SamSunf") die();
if(preg_match("'Nokia(\d{3})/'", $_SERVER['HTTP_USER_AGENT'])) die();
$dbcnx = mysql_connect(MYSQLHOST, DBUSER, DBPASS);
if (!$dbcnx)
{
header("Content-type: text/vnd.wap.wml; charset=utf-8");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-cache, must-relative");
$mysql_error = mysql_error();
echo <<< END
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd">
<wml>
<card id="error" title="Error">
<p align="left">
Извините, но в данный момент база данных недоступна!<br/>
<a href="http://pontoff.net">pontoff.net</a><br/>
</p>
</card>
</wml>
END;
exit();
}
if (!mysql_select_db(DBNAME, $dbcnx))
{
header("Content-type: text/vnd.wap.wml; charset=utf-8");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Cache-Control: no-cache, must-relative");
$mysql_error = mysql_error();
echo <<< END
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.3//EN" "http://www.wapforum.org/DTD/wml13.dtd">
<wml>
<card id="error" title="Error">
<p align="left">
Извините, но в данный момент база данных недоступна!<br/>
<a href="http://pontoff.net">pontoff.net</a><br/>
</p>
</card>
</wml>
END;
exit();
}
if(!function_exists('iconv'))
{
include("./includes/functions/iconv.function");
}
//UNLIM ROOMS
//$wicked_quiz = 3;
$unlim = 8;
// GZip Include
//include("./includes/functions/gzip.function");
?>