ich habe mal wieder eine kleine Frage. Ich habe einen Text in der DB stehen, der so aussieht:
Code: Alles auswählen
:twisted:
[quote]hallo[/quote]
SKYSURFER
Code: Alles auswählen
:twisted:
[quote]hallo[/quote]
Code: Alles auswählen
function obtain_word_list(&$orig_word, &$replacement_word)
Code: Alles auswählen
$orig_word = array();
$replacement_word = array();
obtain_word_list($orig_word, $replacement_word);
if ( count($orig_word) )
{
$komment_text = preg_replace($orig_word, $replacement_word, $komment_text);
}