Hello ,
i try to REPLACE some words to another word , so make text area opition and write each word on Each word in a separate line .
but my code only REPLACE the last word only from text-area .. what is wrong ?
hook : parse_templates
Code:
$bwords = explode("\n", $vbulletin->options['words_list']);
foreach ($bwords as $val)
{
$db->query_write(" UPDATE " . TABLE_PREFIX . " post SET pagetext = REPLACE(pagetext, '".$val."' , 'another-word') ");
}