<?
Error_Reporting(E_ALL & ~E_NOTICE); /////////////// игнорируем ошибки
$id=@mysql_escape_string($id);
$pass=@mysql_escape_string($pass);
$login=@mysql_escape_string($login);
$ref=rand(10000,1000000);
$login=htmlspecialchars(stripslashes(trim($login)));
$pass=htmlspecialchars(stripslashes(trim($pass)));
$chatname=htmlspecialchars(stripslashes(trim($chatname)));
$slink=htmlspecialchars(stripslashes(trim($slink)));
$sname=htmlspecialchars(stripslashes(trim($sname)));
$email=htmlspecialchars(stripslashes(trim($email)));
include "../conf.inc.php";
mysql_connect($DB_HOST,$DB_USER,$DB_PASS) or die (mysql_error());
mysql_select_db($DB_NAME);
//
function go()
{
print "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
print "<!DOCTYPE wml PUBLIC \"-//WAPFORUM//DTD WML 1.1//EN\"
\"http://www.wapforum.org/DTD/wml_1.1.xml\">";
print "<wml><head><meta http-equiv=\"Cache-Control\" content=\"no-cache\" forua=\"true\"/></head>
<card title=\"Регистрация\">
<p align=\"left\">";
};
//
function ending()
{
print "</p></card></wml>";
};
go();
//
$all_chats = @mysql_query("SELECT count(*) FROM `cusers` WHERE 1;");
$all_1 = @mysql_fetch_array($all_chats);
$all = $all_1['count(*)'];
if ($all>=$limit)
{
echo "<small>Приносим свои извенения, но на сегодня регистрация закрыта</small>";
echo "<br/><small><a href=\"http://elena.nsk.ru\">elena.nsk.ru</a></small>";
ending();
} else {
//
$login = trim($login);
$pass = trim($pass);
///////////////////////////////////
if(!preg_match("/[^A-Za-z1-9\@\*\(\)\?\!\-\~\_\[\]\=]+/",$login)) {
if(!preg_match("/[^0-9a-zA-Z_]+/",$pass)) {
if(empty($login)) $error="<small>Не введен логин!</small><br/>";
if(empty($pass)) $error=$error."<small>Не введен пароль!</small><br/>";
if(empty($chatname)) $error=$error."<small>Не введено название чата!!</small><br/>";
if(empty($slink)) $error=$error."<small>Не введен адрес сайта!</small><br/>";
if(empty($sname)) $error=$error."<small>Не введено название сайта!</small><br/>";
if(empty($email)) $error=$error."<small>Не введен email!</small><br/>";
///////////////////////////////////
if(empty($error))
{
$q_c=@mysql_query("select link from cusers where link='".$slink."';");
if(mysql_affected_rows()==0)
{
$datte=date('Y-m-d');
@mysql_query("insert into cusers values(0,'$login','$pass','$chatname','$slink','$sname','$email','$datte','$datte','','');");
$q_c=@mysql_query("select * from cusers where link='".$slink."';");
$q_ch=@mysql_fetch_array($q_c);
$chid=$q_ch['cid'];
@mysql_query("insert into users values(0,'$login','$pass','$name','$sex','$bday','$bmonth','$byear','','$live','$mobile','$email','$url','$about','$icq','$date','Прохожий',0,8,'','',1,'','','','','','1','','','".time()."','','".$REMOTE_ADDR."','".$HTTP_USER_AGENT."',1,0,'small','$chid');");
echo "<small>Чат успешно регнут. ID вашего чата:".$chid."!Адрес вашего чата:<br/> <a href=\"http://elena.nsk.ru/chats/index.php?cid=".$chid."\">http://elena.nsk.ru/chats/index.php?cid=".$chid."</a></small>";
$q_u=@mysql_query("select * from users where login='".$login."' and cid='".$chid."';");
$q_us=@mysql_fetch_array($q_u);
$id=$q_us['id'];
echo "<br/><small>Данные для входа в чат:</small><br/>";
echo "<small>Ваш логин:".$login."<br/>Ваш пароль:".$pass."</small><br/> ";
echo "<b>Внимание!!!</b><small>Чаты с низкой посещаемостью будут удаляться.</small><br/>";
print "<small><anchor>
Войти в чат
<go href=\"../enter.php?cid=$chid\" method=\"post\">
<postfield name=\"id\" value=\"$id\"/>
<postfield name=\"pass\" value=\"$(pass)\"/>
<postfield name=\"ref\" value=\"$ref\"/>
</go>
</anchor></small>";
mysql_query("OPTIMIZE TABLE `cusers`");
}
else
{
echo "<small>Для вашего сайта уже регнут чат!</small>";
}
}
else
{
print $error;
}
} else {
print "<small>В пароле обнаружены недопустимые символы!!!</small>";
print "<br/><small><a href=\"reg1.php\"><<Регистрация заново</a></small>";
}
} else {
print "<small>В логине обнаружены недопустимые символы! Регистрация не возможна!!!</small>";
print "<br/><small><a href=\"reg1.php\">Регистрация заново</a></small>";
}
ending();
}
@mysql_close();
exit;
?>