Файл: all/bb.php
Строк: 7
<?
include '../system/sys.php';
include '../system/funcs.php';
if (!isset ($us)) {
        header ('location: /');
        exit;
}
H ('BB коды', 'BB коды');
$codes = array (
        '[url=http://google.com]google.com[/url]',
        '[url]google.com[/url]',
        'http://google.com',
        '[b]жирный текст[/b]',
        '[u]подчеркнутый текст[/u]',
        '[i]наклонный текст[/i]',
        '[small]мелкий текст[/small]',
        '[big]большой текст[/big]',
        '[red]красный цвет[/red]',
        '[green]зеленый цвет[/green]',
        '[blue]синий цвет[/blue]',
        '[code]код[/code]',
        '[php]<?php echo "php код"; ?>[/php]',
        '[cit]цитата[/cit]',
        'us{1}',
        'file{8}',
        '[reit=100]test[/reit]'
);
foreach ($codes as $code) {
        echo '<div class="list1">' . htmlspecialchars ($code) . ' => ' . bb ($code) . '</div>';
}
F ();
?>