tisdag 26 augusti 2014

hittaITorslanda.se

Please visit my new web site:  hittaitorslanda.se

sitemap.php

Example of sitemap.php:

<?php header('Content-type: text/xml');
echo "<?xml version='1.0' encoding='UTF-8'?>";
echo "<urlset xmlns='http://www.sitemaps.org/schemas/sitemap/0.9'";
echo "  xmlns:image='http://www.google.com/schemas/sitemap-image/1.1'";
echo "  xmlns:video='http://www.google.com/schemas/sitemap-video/1.1'>";

echo "  <url><loc>";
echo "http://www.hittaitorslanda.se/index.php";
echo " </loc></url>";

$xml=simplexml_load_file(getcwd() . "/Categories/Categories.xml");

foreach($xml->children() as $Category)
{
  echo "<url><loc>";
  echo "http://www.hittaitorslanda.se/Categories/Category.php?Category=" . $Category->FileName;
  echo "</loc></url>";


  $xmlMembers=simplexml_load_file(getcwd() . "/Members/" . $Category->FileName . ".xml");

  foreach($xmlMembers->children() as $Member)
  {
    echo "<url><loc>";
    echo "http://www.hittaitorslanda.se/Members/Member.php?Category=" . $Category->FileName . "&amp;Member=" . urlencode($Member->Name);
    echo "</loc></url>";
  }

}


echo "</urlset>";
exit;

?>