Ben, un semblant de bbCode :ack:
J'imagine qu'on ne verra pas grand chose à cause du forum (selon l'aperçu, ça va encore
function bbCode($string)
{
$string = preg_replace('#\[b\](.+)\[/b\]#isU', '<span style="font-weight: bold;">$1</span>', $string);
$string = preg_replace('#\[i\](.+)\[/i\]#isU', '<span style="font-style: italic;">$1</span>', $string);
$string = preg_replace('#\[u\](.+)\[/u\]#isU', '<span style="text-decoration: underline;">$1</span>', $string);
$string = preg_replace('#\[s\](.+)\[/s\]#isU', '<span style="text-decoration: line-through;">$1</span>', $string);
$string = preg_replace('#\[title\](.+)\[/title\]#iU', '<span style="font-weight: bold; text-decoration: underline;">$1</span>', $string);
$string = preg_replace('#\[url=(.+)\](.+)\[/url\]#iU', '<a href="$1">$2</a>', $string);
$string = preg_replace('#\[img\](.+)\[/img\]#iU', '<img src="$1" alt="Blizzware Image" />', $string);
return $string;
}