Creo un file xml da php, ma ottengo questo preciso output

Codice PHP:
 <?xml version="1.0" encoding="ISO-8859-1"?>
<users>
    <channel>
        <name></name>
        <surname></surname>
    </channel>
</users>
Come vedete mi stampa un carattere bianco prima di <?


Questo è il code php
Codice PHP:
<?php
header
("Content-type: text/xml");

include(
"db_connect.php");

$query "SELECT * FROM users ORDER BY id DESC";
$resultID mysql_query($query$db) or die("Data not found.");

$xml_output ltrim("\r\n<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n");

....

echo 
$xml_output;

?>