Originally posted by dani_php
...How can i transform html code in text/plain, but to keep
the style page?...
Not quite sure what you mean, but the easiest way to change something to text/plain would be to either set it in the headers:
header ( "Content-type: text" );
or you can run something that will replace all the <'s and >'s into their...well here...
str_replace(array("<", ">"), array("<", ">"), $str);
Gosh darnit I can't think tonight...