1. sayfa
<?php## Veritabanı bağlantısı yapalım.@mysql_select_db("db", mysql_connect("localhost","kullanıcı adı","sifre"));## Xml olarak göstermek için girilen komutheader("Content-Type: text/xml");## Sitemap Bilgileriecho '<?xml version="1.0" encoding="UTF-8"?>';echo '<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">';## Site Menüleriecho ' <url> <loc>http://www.xxx.com/</loc> <lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url> <url> <loc>http://www.xxx.com/portal.php</loc> <lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> <url> <loc>http://www.xxx.com/search.php</loc> <lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> <url> <loc>http://www.xxx.com/memberlist.php</loc> <lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url> <url> <loc>http://www.xxx.com/misc.php?action=help</loc> <lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.8000</priority> </url>';## Makaleleri Listele$Makaleler = mysql_query("select * from makale where durum='0' order by id DESC"); while($Row = mysql_fetch_array($Makaleler)){ echo' <url> <loc>http://www.xxx.com/'.$Row["subject"].'.html</loc> <lastmod>'.date("Y").'-'.date("m").'-'.date("d").'T'.date("H:i:s").'+00:00</lastmod> <changefreq>daily</changefreq> <priority>0.5000</priority> </url>';}echo '</urlset>';?>
DH forumlarında vakit geçirmekten keyif alıyor gibisin ancak giriş yapmadığını görüyoruz. Üye olduğunda özel mesaj gönderebilir, beğendiğin konuları favorilerine ekleyip takibe alabilir ve daha önce gezdiğin konulara hızlıca erişebilirsin.
Mybb bir forum sitesinde dinamik sitemap oluşturmak istiyorum. Yardımcı olur musunuz?
Nerede yanlış yapıyorum.
DH forumlarında vakit geçirmekten keyif alıyor gibisin ancak giriş yapmadığını görüyoruz.
Üye Ol Şimdi DeğilÜye olduğunda özel mesaj gönderebilir, beğendiğin konuları favorilerine ekleyip takibe alabilir ve daha önce gezdiğin konulara hızlıca erişebilirsin.
< Bu mesaj bu kişi tarafından değiştirildi takalar1381 -- 23 Eylül 2017; 14:46:6 >