Hi.
Im reading a XML-file from another site and the result isnt showing right. The people on the other site says that im doing something wrong and maybe I am. When i echo the contents of the file to the browser in plaintext i get tabs and weird signs:
<?xml version="1.0" encoding="utf-8"?>
<Envelope>
<Sender id="20209846" email="
 firstname.lastname@company.se 
 ">Company name</Sender>
<TransactInfo timeStamp="2003-05-06T15:18:33">
<TransactId>OJ-WS-03</TransactId>
</TransactInfo>
</Envelope>
Here is how it should look according to "The people on the other side":
<?xml version="1.0" encoding="utf-8"?>
<Envelope>
<Sender id="20209846" email="firstname.lastname@company.se">Company name</Sender>
<TransactInfo timeStamp="2003-05-06T15:18:33">
<TransactId>OJ-WS-03</TransactId>
</TransactInfo>
</Envelope>
Maybe somebody here recognizes the signs and can tell me why they are there and how I get rid of them.
Otherwise - can i read the file in binary mode or something so I can say to them exactly what bits I get that they say isnt there? Actually its more a question of how I can look at and trust the output I get - maybe, as far as I know, it could be my browser adding thoose weirds signs.