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

Размер файла: 1.04Kb
<?php
include "./ini.php";
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="50"/><br/>'.
'<small>Пароль:*</small><br/>'.
'<input type="password" name="pass" maxlength="50"/><br/>'.
'<small>Заголовок:*</small><br/>'.
'<input type="text" name="title" maxlength="50"/><br/>'.
'<small>Ссылка:*</small><br/>'.
'<input type="text" name="link" maxlength="50" value="http://"/><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)"/>'.
'</go></anchor><br/>'.
'<a href="../index.php">::Главная</a>'.
'</small></p>'.
'</card>'.
'</wml>';
?>