ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/netphim/code/sitemap/ |
<?php global $DB, $INFO; $type = $CORE->input['type']??''; if(!empty($type)) { $where = " WHERE slug!='' AND country LIKE '%".$type."@%' "; $order_by = ' created DESC '; $query = $DB->query("SELECT name,slug,created FROM tb_phim " . $where . " ORDER BY " . $order_by . " LIMIT 200"); header('Content-type: text/xml'); echo '<?xml version="1.0" encoding="UTF-8"?> <?xml-stylesheet type="text/xsl" href="' . $INFO['home_url'] . 'sitemap.xsl"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">'; while ($row = $DB->fetch_row($query)) { echo '<url> <loc>' . $INFO['home_url'] . $row['slug'] . '/</loc> <lastmod>' . date('Y-m-d', strtotime($row['created'])) . '</lastmod> <changefreq>monthly</changefreq> <priority>0.8</priority> </url>'; } echo '</urlset>'; } ?>