Mini Shell
<?php
include 'ayar.php';
echo '<?xml version="1.0" encoding="UTF-8"?>' ?>
<?php
$urunler=mysqli_query($baglan,"select * from urun_ref ORDER BY siraa DESC");
while ($refcek=mysqli_fetch_array($urunler))
{
//fotoğrafları veri tabanından array olarak çekip donuşturuyoruz JSON aray
$isim=json_decode($refcek['isim']);
$id=$refcek['id'];
echo '
<url>
<loc>'.$_SERVER['HTTPS_HOST'].'/'.seo($isim[0]).'-'.$id.'.'."html".'</loc>
<lastmod>'.date("Y")."-".date("m")."-".date("d")." T ".date("H:i:s").' +00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5000</priority>
</url><br><br>';
}
echo '</urlset>';
?>