Размер файла: 2.92Kb
<?php
header ("Content-type:text/vnd.wap.wml; charset=utf-8");
require("db.php");
print '<?xml version="1.0" encoding="utf-8"?>'.
'<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN"'.
' "http://www.wapforum.org/DTD/wml_1.1.xml">'.
'<wml><head><meta http-equiv="Cache-Control" content="no-cache" forua="true"/></head>';
$link = htmlspecialchars(stripslashes(trim($link)));
$title = htmlspecialchars(stripslashes(trim($title)));
$pass = htmlspecialchars(stripslashes(trim($pass)));
$opis = htmlspecialchars(stripslashes(trim($opis)));
print '<card title="Регистрация">'.
'<p align="left">';
$query_users_link = @mysql_query("select * from `top` where link='".$link."';");
$users_link = @mysql_fetch_array($query_users_link);
if(empty($link)) $error='<small>Нет ссылки!</small><br/>';
if(empty($title)) $error=$error.'<small>Нет названия!</small><br/>';
if(empty($pass)) $error=$error.'<small>Нет пароля!</small><br/>';
if(empty($opis)) $error=$error.'<small>Нет описания!</small><br/>';
$db_link = $users_link['link'];
if(empty($error))
{
if(strtolower($link) != strtolower($db_link))
{
@mysql_query("insert into `top` values(0,'".$link."','".$title."','".$pass."','".$opis."','0','0','0','0','0','0','0',NOW(),1);");
$q=mysql_query("select * from `top` where link='$link' limit 1;");
$data=mysql_fetch_array($q);
$id=$data['id'];
print "<small>Ваш сайт зарегистрирован!</small><br/>";
print "<small><u>Ваш ID:</u> ".$data['id']."</small><br/>";
print "<small><u>Ваш Пароль:</u> ".$data['pass']."</small><br/>";
print "<small><u>Код вашего счетчика:</u></small><br/><small>";
print htmlspecialchars("<a href=\"http://amlet.com.ru/top/in.php?id=".$data['id']."\"><img src=\"http://amlet.com.ru/top/c.php?id=".$data['id']."\" alt=\"AmLet\"/></a>");
print '</small><br/><small>:::::</small><br/>
<small><a href="index.php">В рейтинг</a></small><br/>
<small><a href="http://amlet.com.ru">amlet.com.ru</a></small>';
}
else
{
print '<small>Такой сайт уже зарегистрирован!</small>';
}
}
else
{
print $error;
}
print '</p></card></wml>';
@mysql_close();
?>