I am trying to insert new lines into an Excel XML document. The entity that I need to insert is
but whenever I insert that into PHP DOM, it just converts it to a normal line break.
This is what I am getting:
<Cell><Data>text
text2
</Data></Cell>
This is what I want:
<Cell><Data>text text2 </Data></Cell>
I cannot figure out how to insert a new line and get it to encode that way, or add that character without it either double encoding it, or converting it to a new line.
Thanks for the help!