Hi there,
I'm having a problem with echo:
<?php
echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?>\n";
?>
For some reason, the result is:
<?xml version="1.0" encoding="iso-8859-1"?>\n";
?>
Whereas it should just be:
<?xml version="1.0" encoding="iso-8859-1"?>
What's even more interesting is that when there is code before that echo statement, it doesn't happen...
Any help would be appreciated! It needs to go... I think it's something to do with the last ?> in the statement.
Thanks,
Chris