Вывод кода на форуме.в тегах. помогите.
Добавлено: 06 янв 2011, 11:03
Код: Выделить всё
echo "как это";
http://wap-master.ru
===
Вот код вывода тега :
Код: Выделить всё
function BBcode($m)
{
$m = preg_replace('|\[img](.+)\[/img]|','<img src="$1" alt=""/>',$m);
$m = preg_replace_callback('#\[code\](.+)\[/code\]#si', 'code', $m);
$a = Array(
'#\[url=(.+)\](.+)\[\/url\]#si' => ' <a href="$1" target="_blank">$2</a> ',
'#\[quote](.*?)\[\/quote\]#si' => '<div class="quote"><b>Цитата</b>: $1',
'#\[end\]#si' => '</div>',
'#\[i\](.+)\[\/i\]#si' => '<i>$1</i>',
'#\[b\](.+)\[\/b\]#si' => '<b>$1</b>',
'#\[u\](.+)\[\/u\]#si' => '<u>$1</u>',
'#\[del\](.+)\[\/del\]#si' => '<del>$1</del>',
'#\[big\](.+)\[\/big\]#si' => '<big>$1</big>',
'#\[small\](.+)\[\/small\]#si' => '<small>$1</small>',
'#\[red\](.+)\[\/red\]#si' => '<font color="#DD0000">$1</font>',
'#\[green\](.+)\[\/green\]#si' => '<font color="#00AA00">$1</font>',
'#\[yellow\](.+)\[\/yellow\]#si' => '<font color="#DDDD00">$1</font>',
'#\[blue\](.+)\[\/blue\]#si' => '<font color="#0000DD">$1</font>'
);