File size: 4.03Kb
<?
include "config2.php";
$linkkk=mysql_pconnect ($DB_HOST, $DB_USER, $DB_PASS);
mysql_select_db($DB_NAME);
header ("Content-type:text/vnd.wap.wml; charset=utf-8");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
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>
<card title=\"Регистрация\">
<p align=\"left\">";
};
function ending()
{
print "</p>
</card>
</wml>";
};
go();
$q_u_l=@mysql_query("select title from users where title='".$title."';");
$u_l=@mysql_fetch_array($q_u_l);
if(empty($title)) $error = $error."<b>Нет названия!</b><br/>";
if(empty($pass)) $error = $error."<b>Вы не ввели пароль!</b><br/>";
if(empty($email)) $error = $error."<b>Вы не ввели e-mail!</b><br/>";
if(empty($link)) $error = $error."<b>Ссылка не может быть пустой!</b><br/>";
if(empty($about)) $error = $error."<b>Не введено описание сайта!</b><br/>";
if(empty($error))
{
if (@MySQL_Num_rows($q_u_l)==0)
{
$title = htmlspecialchars(stripslashes(trim($title)));
$pass = htmlspecialchars(stripslashes(trim($pass)));
$email = htmlspecialchars(stripslashes(trim($email)));
$link = htmlspecialchars(stripslashes(trim($link)));
$about = htmlspecialchars(stripslashes(trim($about)));
if(mysql_query("insert into users values(0,'$title','$pass','$email','$link','$about',NOW(),0,0,0,0,0,0,0,0,0,'','','','',0,0,0,0);")) {
print "Вы успешно зарегистрированы. Разместите один следующий код у себя на главной странице :<br/>";
$query = mysql_query("select id,title from users where title='".$title."';");
$data = mysql_fetch_array($query);
include "config3.php";
print "1)<img src=\"http://$domen/count.php?id=".$data['id']."\" alt=\"$name\"/><br/>";
print htmlspecialchars("<a href=\"http://$domen/index.php?cid=".$data['id']."\"><img src=\"http://$domen/count.php?id=".$data['id']."\" alt=\"$name\"/></a>");
// print "<br/>2)<img src=\"http://wapmax.ru/count.php?id=".$data['id']."&img=1\" alt=\"Zagruzki.Ru\"/><br/>";
// print htmlspecialchars("<a href=\"http://wapmax.ru/index.php?cid=".$data['id']."\"><img src=\"http://wapmax.ru/count.php?id=".$data['id']."&img=1\" alt=\"wapmax.ru\"/></a>");
// print "<br/>3)<img src=\"http://wapmax.ru/count.php?id=".$data['id']."&img=2\" alt=\"wapmax.ru\"/><br/>";
// print htmlspecialchars("<a href=\"http://wapmax.ru/index.php?cid=".$data['id']."\"><img src=\"http://wapmax.ru/count.php?id=".$data['id']."&img=2\" alt=\"wapmax.ru\"/></a>");
print "<br/><b>Внимание! Ваш id ".$data['id']."! <br/>Id потребуется вам для изменения профиля!</b><br/><a href=\"index.php\">$topic</a> ";
}
} else {
print "В нашей базе уже есть сайт с таким названием!";
}
}
else
{
print $error;
}
ending();
mysql_close($linkkk);
?>