PHP beginner |
|
Ik wil een Quote in een Quote hebben maar het wil niet lukken de eerst Quote doet hij goed maar bij de 2de laat hij gewoon dit zien
[ quote=name]
Scriptje
$bericht = preg_replace( '/\[quote\](.+?)\[\/quote\]/is', '<div style="border: 1px dotted #eaeaea; background-color: #F5F5F5;" "><strong>Quote:</strong><br />\\1</div>', $bericht);
$bericht = preg_replace( '/\[quote=(.+?)\](.+?)\[\/quote\]/is', '<div style="border: 1px dotted #eaeaea; background-color: #F5F5F5;"><strong>Quote van \\1:</strong><br />\\2</div>', $bericht);
$bericht = preg_replace( '/\[quote\](.+?)\[\/quote\]/is', '<div style="border: 1px dotted #eaeaea; background-color: #F5F5F5;" "><strong>Quote:</strong><br />\\1</div>', $bericht); $bericht = preg_replace( '/\[quote=(.+?)\](.+?)\[\/quote\]/is', '<div style="border: 1px dotted #eaeaea; background-color: #F5F5F5;"><strong>Quote van \\1:</strong><br />\\2</div>', $bericht);
|