Просмотр файла bb-codes.php

Размер файла: 873B
<?

include_once "SYSTEM/include/functions.php";

include_once "SYSTEM/include/mysql.php";

include_once "SYSTEM/include/param.php";

include_once "SYSTEM/include/ban.php";

include_once "SYSTEM/include/sess.php";

include_once "SYSTEM/include/ban_2.php";

include_once "SYSTEM/include/theme.php";

$title='BB коды';

$mesto='Учит бб-коды';

head();

echo 'Примеры bb-кодов:<br />';

$codes = array ('b' => 'жирный', 'i' => 'курсив', 'u' => 'подчёркнутый',

				'small' => 'маленький', 'big' => 'большой',

				'red' => 'красный', 'green' => 'зелёный', 'blue' => 'синий', 'url' => 'ссылка');

foreach ($codes as $code => $text)

{

	$text = bbcode('['.$code.']'.$text.'[/'.$code.']');

	echo '['.$code.']'.$text.'[/'.$code.']'.'<br />';

}





foot();

?>