I\'ve got a php script. Most of the time the script returns html, which is working fine, but on one occasion (parameter ?Format=XML) the script returns XML instead of HTML.<
You should send a Content-Type header before you send any output.
Content-Type
header('Content-Type: text/xml');