Ouwe rakker |
|
Wanneer ik probeer om tekst bold te maken binnen een quote lukt dit niet. Mijn preg_replace welke hierop van toepassing zijn kan je hieronder inzien.
Weet iemand wat ik kan doen om te zorgen dat dit wel goed verloopt?
<?php
$sOutput = preg_replace('#\[b\](.*?)\[/b\]#si', "<strong>\\1</strong>", $sOutput);
$sOutput = preg_replace("/\[quote\](.*?)\[\/quote\]/", "<div style=\"margin-left: 40px; margin-bottom: 6px; color: #838383; width: 400px;\">\\1</div>", $sOutput);
?>
<?php $sOutput = preg_replace('#\[b\](.*?)\[/b\]#si', "<strong>\\1</strong>", $sOutput); $sOutput = preg_replace("/\[quote\](.*?)\[\/quote\]/", "<div style=\"margin-left: 40px; margin-bottom: 6px; color: #838383; width: 400px;\">\\1</div>", $sOutput); ?>
|