Просмотр файла news/conf/index.php

Размер файла: 1.2Kb
<?php
define('MYSQLHOST', 'localhost');
define('DBNAME', 'Имя базы');
define('DBUSER', 'Юзер');
define('DBPASS', 'Пароль');

function anti($txt)
{
$txt = htmlspecialchars(mysql_escape_string(trim($txt)));
return $txt;
}

//Пароль для админки
$adpass = 'Пароль от админки';
$adpass = anti($adpass);

//Адрес сайта
$site = 'Ваш сайт';
$site = anti($site);

$r = rand(0, 999999);
$r = intval($r);

$link = mysql_connect(MYSQLHOST, DBUSER, DBPASS);

if (!$link)
{
echo '<?xml version=\'1.0\' encoding=\'UTF-8\'?><!DOCTYPE wml PUBLIC \'-//WAPFORUM//DTD WML 1.3//EN\' \'http://www.wapforum.org/DTD/wml13.dtd\'><wml><head><meta http-equiv=\'Cache-Control\' content=\'no-cache\' forua=\'true\'/></head><card id=\'error\' title=\'Ошибка!\'><p align=\'left\'><small>Нет соединения с базой MySQL.</small></p></card></wml>';
exit;
}
elseif (!mysql_select_db(DBNAME, $link))
{
echo '<?xml version=\'1.0\' encoding=\'UTF-8\'?><!DOCTYPE wml PUBLIC \'-//WAPFORUM//DTD WML 1.3//EN\' \'http://www.wapforum.org/DTD/wml13.dtd\'><wml><head><meta http-equiv=\'Cache-Control\' content=\'no-cache\' forua=\'true\'/></head><card id=\'error\' title=\'Ошибка!\'><p align=\'left\'><small>Невозможно найти базу данных.</small></p></card></wml>';
exit;
}
?>