Просмотр файла gb/add.php

Размер файла: 0.99Kb
<?php
session_start();
error_reporting(E_ALL);
$title = "Добавить Сообщение";
include "config.php";
include "inc/head.ml";
//Вывод формы добавления
echo "
Здесь Вы можете добавить Cообшение.<br />
<b>Прежде чем добавить сообшение прочитайте</b>
<a href=\"rules.php\">правила!</a><br>
<hr>
<form action=\"mesadd.php\" method=\"post\">
Логин<br>
<input type=\"text\" name=\"login\" /><br>
Сообшение<br>
<input type=\"text\" name=\"mesage\" /><br>
Транслит<br>
<select name=\"translite\" class=\"itxt\"><option value=\"0\">нет</option><option value=\"1\">да</option></select><br/>
<input type=\"submit\" value=\"Добавить\" />
</form>
<div class=\"c\"/>
<a href=\"smiles.php\">Смайлы</a><br>
<a href=\"bb.php\">BB код</a><br>
<a href=\"index.php\">В гостевую</a><br>
<a href=\"/index.php\">На главную</a><br>
</div>
";
include "inc/footer.php";
?>