arkadaşlar alttaki kodu çalıştırınca boyle bir hata alıyorum

<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "optikler";
 
// bağlantı oluşturuyoruz
$conn = new mysqli($servername, $username, $password, $dbname);
 
$sql = "SELECT * FROM oc_product_description";
$result = $conn->query($sql);
?>
 
<?php header('Content-type: application/xml; ',true);  ?>


 
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
 
<?php while($row = $result->fetch_assoc()) { ?>
 
    <url>
        <link><?php echo ''.$row["name"]; ?></link>
        <changefreq>weekly</changefreq>
        <priority>0.7</priority>
    </url>
 
<?php } ?>
 
 
 
</urlset>
aldıgım hata sanırsam türkçe karakterde sorun var yardımlarınızı bekliyorm