View file super2/bbcode/index.php

File size: 2.69Kb
<?php

/******************************************************************************
 *                                                                            *
 *   index.php, v 0.01 2007/03/08 - This is part of xBB library               *
 *   Copyright (C) 2006-2007  Dmitriy Skorobogatov  dima@pc.uz                *
 *                                                                            *
 *   This program is free software; you can redistribute it and/or modify     *
 *   it under the terms of the GNU General Public License as published by     *
 *   the Free Software Foundation; either version 2 of the License, or        *
 *   (at your option) any later version.                                      *
 *                                                                            *
 *   This program is distributed in the hope that it will be useful,          *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of           *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            *
 *   GNU General Public License for more details.                             *
 *                                                                            *
 *   You should have received a copy of the GNU General Public License        *
 *   along with this program; if not, write to the Free Software              *
 *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
 *                                                                            *
 ******************************************************************************/

// Указываем тип содержимого этой страницы
header('Content-type: text/html; charset=utf-8');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Тест BBCode</title>
<meta name="author" content="Дмитрий Скоробогатов" />
<link href="./style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div align="center">
<h2>xBB - PHP-библиотека для работы с BBCode</h2>
<form action="demo.php" method="post">
<textarea cols="100" rows="24" name="text"><?php
echo htmlspecialchars(file_get_contents('./manual.bb'));
?></textarea>
<p><strong>Тестовый пример - большой и сложный. Его обработка может потребовать
нескольких секунд.</strong></p>
<input name="get_html" type="submit" value="Конвертировать в HTML" />
<input name="highlight" type="submit" value="Подсветить BBCode" />
</form>
</div>
</body>
</html>