Merhaba, websiteme rss yazmaya çalışıyorum fakat bir çeşit hata alıyorum. Bu konuda yardımcı olabilecek var mı?
Hata: error on line 1808 at column 1: Extra content at the end of the document

<?php
// Create connection
require_once (__DIR__ . '/includes/init.php');
// Check connection

 
$db->query("SELECT hash, title, lyrics, artist, cover, count FROM ninacoder_lyrics ORDER BY id ASC LIMIT 200");
 
 header( "Content-type: text/xml");
 
 echo "<?xml version='1.0' encoding='UTF-8'?>"?>
 <rss version='2.0'>

 <title>Jetlyrics.net| RSS</title>
 <link>http://www.Jetlyrics.net/</link>
 <description>Lyrics RSS</description>
 <language>en-us</language>"
 
<?php while ($row = $db->get_row($sql_result)){

$row['view_url'] = lyrics_url($row['title'], $row['artist'], $row['hash']);
$title = $row['title'];
$link = $row['view_url'];
$description = $row['artist'];?>

 <item>
   <title><?php echo htmlspecialchars($row['title']) ?></title>
   <link><?php echo htmlspecialchars($row['view_url']) ?></link>
   <description><?php echo htmlspecialchars($row['artist']) ?> Lyrics, Song Texts</description>
   </item>



<?php }

 
 
?>