this goes along with something i had asked before, about censoring words. Well i have that part working if i edit the source code for the "bad words", but i am trying to figure out how to split up the output of one row. so that i can have this
$message = eregi_replace($row[badwords],"<I>censored</I>",$word);
magically turn into this
$message = eregi_replace(poop,"<I>censored</I>",$word);
$message = eregi_replace(butt,"<I>censored</I>",$word);
$message = eregi_replace(bowlcut,"<I>censored</I>",$word);
So the row "badwords" has all the bad words i want censored in it. maybe im going the wrong way on this, any advice on how to do anything like this?
thanks ahead of time