<?php

$data = json_decode(file_get_contents("index.json"), true);

header("Content-Type: application/xml");

echo "<?xml version='1.0' encoding='UTF-8'?>";
echo "<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'>";

foreach($data as $p){

  $slug = strtolower(preg_replace('/[^a-z0-9]+/', '-', $p['title']));

  echo "<url>";
  echo "<loc>https://siteul-tau.ro/seo/pages/$slug.html</loc>";
  echo "</url>";
}

echo "</urlset>";