I have put this together:
$body1 = eregi_replace("a","4",$text);
$body2 = eregi_replace("e","3",$body1);
$body3 = eregi_replace("o","0",$body2);
wich is pretty simple, and also works for ordinary text. But when I put in a HTML tag, that alsp get replaced, so what I am looking for is someway to replace the specified chars, with the specified other chars, except when the chars are found within <>
If some solution s given please, if you don't mind, give an explanation on what is done. I have only been working with Regular Expressions for about 3 hours total
Sincerely
Brian Schmidt