Codice PHP:
$testo = str_replace(
array('[b]','[b]', '<strong>', $testo);
$testo = str_replace(
array('[/b]','[/b]', '</strong>'.$testo);
$testo = str_replace(
array('[i]','[i]', '<em>', $testo);
$testo = str_replace(
array('[/i]','[/i]', '</em>'.$testo);
$testo = str_replace(
array('[fs=""]','[FS]', '<font size="">', $testo);
$testo = str_replace(
array('[/fs]','[/FS]', '</font>'.$testo);
$testo = str_replace(
array('[fc=""]','[FC]', '<font color="">', $testo);
$testo = str_replace(
array('[/fc]','[/FC]', '</font color>'.$testo);
$testo = str_replace(
array('[left]','[left]', '<div align="left">', $testo);
$testo = str_replace(
array('[/left]','[/left]', '</div>'.$testo);
$testo = str_replace(
array('[right]','[right]', '<div align="right">', $testo);
$testo = str_replace(
array('[/right]','[/right]', '</div>'.$testo);
$testo = str_replace(
array('[center]','[center]', '<div align="center">', $testo);
$testo = str_replace(
array('[/center]','[/center]', '</div>'.$testo);
$testo = str_replace(
array('[img]','[IMG]', '<img scr="">', $testo);
$testo = str_replace(
array('[/img]','[/IMG]', ''.$testo);
$testo = str_replace(
array('[url]','[url]', '<a href="">', $testo);
$testo = str_replace(
array('[/url]','[/url]', '</a>'.$testo);