<?php
("Content-Type: application/xml; charset=utf-8");
$pages = [
    [
        'loc' => 'https://paramicmedia.com/',
        'lastmod' => '2025-05-10',
        'changefreq' => 'weekly',
        'priority' => '1.0'
    ],
    [
        'loc' => 'https://paramicmedia.com/about-us/',
        'lastmod' => '2025-05-10',
        'changefreq' => 'monthly',
        'priority' => '0.8'
    ],
    [
        'loc' => 'https://paramicmedia.com/ecommerce-website/',
        'lastmod' => '2025-05-10',
        'changefreq' => 'monthly',
        'priority' => '0.7'
    ],
    [
        'loc' => 'https://paramicmedia.com/brand-identity/',
        'lastmod' => '2025-05-10',
        'changefreq' => 'monthly',
        'priority' => '0.7'
    ],
    [
        'loc' => 'https://paramicmedia.com/social-media-marketing/',
        'lastmod' => '2025-05-10',
        'changefreq' => 'monthly',
        'priority' => '0.7'
    ],
    [
        'loc' => 'https://paramicmedia.com/search-engine-optimisation/',
        'lastmod' => '2025-05-10',
        'changefreq' => 'monthly',
        'priority' => '0.7'
    ]
];
<?xml version="1.0" encoding="UTF-8"?>' . "\n";
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php foreach ($pages as $page): ?>
  <url>
    <loc><?= htmlspecialchars($page['loc'], ENT_XML1, 'UTF-8') ?></loc>
    <lastmod><?= $page['lastmod'] ?></lastmod>
    <changefreq><?= $page['changefreq'] ?></changefreq>
    <priority><?= $page['priority'] ?></priority>
  </url>
<?php endforeach; ?>
</urlset>
