Просмотр файла waplend/gbs/regform.php

Размер файла: 2.19Kb
<?php
include "./ini.php";
$code = rand(999,9999);
@mysql_query("update `kodes` set `regcode`='$code';");
header ("Content-type:text/vnd.wap.wml; charset=utf-8");
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">'.
'<wml>'.
'<card title="Регистрация">'.
'<p><small>'.
'Логин:*</small><br/>'.
'<input type="text" name="login" maxlength="20"/><br/>'.
'<small>Пароль:*</small><br/>'.
'<input type="password" name="pass" maxlength="10"/><br/>'.
'<small>Заголовок:*</small><br/>'.
'<input type="text" name="title" maxlength="30"/><br/>'.
'<small>Текст (Приветствие) вверху:</small><br/>'.
'<input type="text" name="privet" maxlength="80" value=""/><br/>'.
'<small>Ссылка:*</small><br/>'.
'<input type="text" name="link" maxlength="30" value="http://"/><br/>'.
'<small>Разделитель сообщений:</small><br/>'.
'<input type="text" name="div" maxlength="30" value="-----"/><br/>'.
'<small>Cообщений на странице:*</small><br/>'.
'<select name="pg" value="10">'.
'<option value="5">5</option>'.
'<option value="8">8</option>'.
'<option value="10">10</option>'.
'<option value="12">12</option>'.
'<option value="15">15</option>'.
'<option value="20">20</option>'.
'</select><br/>'.
'<small>Время антифлуда(сек.)</small><br/>'.
'<input type="*N" name="antiflud" maxlength="3" value="120"/><br/>'.
'<small>Введите это число:'.$code.'</small><br/>'.
'<input type="*N" name="kod" maxlength="4"/><br/>'.
'<small><anchor>Ok'.
'<go href="reg.php" method="post">'.
'<postfield name="login" value="$(login)"/>'.
'<postfield name="pass" value="$(pass)"/>'.
'<postfield name="link" value="$(link)"/>'.
'<postfield name="title" value="$(title)"/>'.
'<postfield name="privet" value="$(privet)"/>'.
'<postfield name="div" value="$(div)"/>'.
'<postfield name="pg" value="$(pg)"/>'.
'<postfield name="antiflud" value="$(antiflud)"/>'.
'<postfield name="kod" value="$(kod)"/>'.
'</go></anchor><br/>'.
'<a href="http://'.$reklama.'">'.$reklama.'</a><br/>'.
'</small></p>'.
'</card>'.
'</wml>';
?>