Hi,
I could really use assistance, as I am now pulling my hair out over the following problem.
I am writing a CMS in PHP, that copies code from a textarea, on submission to a textfile, however I need to remove the formatting, ie newlines (most importantly), and the indents (if at all possible).
Basically I need to get code from this,
<H1>
Hello
</H1>
<P>
Some Text
</P>
to this,
<H1>Hello</H1><P>Some Text</P>
Any help really will be much appreciated.
Thanks
FiSH