when I run a simple xml program as follows
<?xml version="1.0" standalone="yes"?>
<greeting>
hello XML!!
</greeting>
I get two different outputs in IE and Opera
in IE the out put is
<?xml version="1.0" ?>
<greeting>hello XML!! </greeting>
and when I run it in opera I get an output as follows
hello XML!!
which is the correct one and Y is this difference?
