Файл: soc-set/faq/bb.php
Строк: 20
<?php
require_once('../core/start.php');
check_auth();
head('FAQ: BB-коды');
panel();
echo DIV_LI . 'Основные' . CLOSE_DIV;
echo DIV_BLOCK;
echo text('[b]Жирный текст[/b]') . ' => <input type="text" value="[b]Жирный текст[/b]" /><br />';
echo text('[i]Наклонный текст[/i]') . ' => <input type="text" value="[i]Наклонный текст[/i]" /><br />';
echo text('[u]Подчеркнутый текст[/u]') . ' => <input type="text" value="[u]Подчеркнутый текст[/u]" /><br />';
echo text('[big]Крупный текст[/big]') . ' => <input type="text" value="[big]Крупный текст[/big]" /><br />';
echo text('[small]Мелкий текст[/small]') . ' => <input type="text" value="[small]Мелкий текст[/small]" /><br />';
echo text('[red]Красный текст[/red]') . ' => <input type="text" value="[red]Красный текст[/red]" /><br />';
echo text('[yellow]Желтый текст[/yellow]') . ' => <input type="text" value="[yellow]Желтый текст[/yellow]" /><br />';
echo text('[green]Зеленый текст[/green]') . ' => <input type="text" value="[green]Зеленый текст[/green]" /><br />';
echo text('[blue]Синий текст[/blue]') . ' => <input type="text" value="[blue]Синий текст[/blue]" /><br />';
echo CLOSE_DIV;
echo DIV_LI . 'Дополнительные' . CLOSE_DIV;
echo DIV_BLOCK;
echo text('[google]Поиск в google[/google]') . ' => <input type="text" value="[google]Поиск в google[/google]" /><br />';
echo text('[googleimg]Поиск картинки в google[/googleimg]') . ' => <input type="text" value="[googleimg]Поиск картинки в google[/googleimg]" /><br />';
echo CLOSE_DIV;
$array = array('Информация', 'BB-коды');
nav($array);
require_once('../core/stop.php');
?>