oki… I have to have a block of text to be saved in an XML file. But when I have newlines in the XML file and I try to get the XML file to parse in PHP, I only get the last line (i.e. the text after the last new line)
How can I get around this…
my XML file looks like the following
<HOME>
<MAINTEXT>First Line
Another Line</MAINTEXT>
<NEWS>
</NEWS>
</HOME>
but php just reads “Another Line”
Please help
-Aditya