<?php
ini_set('memory_limit', '256M');
	error_reporting(E_ALL);
	ini_set('log_errors','0');
	ini_set('display_errors','1');

	header('Content-type: application/xml; charset="utf-8"');
	
	include_once('class/Defines.php');
	include_once('class/Debug.php');

	include_once('class/StringTools.php');

	include_once('class/database/Database.php');



    $db = new DB(DB_CONN,DB_USER,DB_PASS);
	
	$orz = $db->select("pub", "czy_wyswietlac=1 ORDER BY czas DESC");
	//print_r($orz);
	//die();
?>
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<?php
	foreach($orz as $o){
		//$date = new DateTime($o['czas']);
		$date = new DateTime();
		$date->modify('-7 hours');

		$d=$date->format('c');
		
		//$d='2017-06-05T04:39:21+02:00';

		echo'
   <url>
      <loc>'.URL.URL_OGLOSZENIE_SADOWE.$o['link'].'</loc>
      <lastmod>'.$d.'</lastmod>
      <changefreq>daily</changefreq>
	  <priority>0.9</priority>
   </url>';
	}
?>
</urlset> 