Guest User

Untitled

a guest
Mar 5th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. <?php
  2. header("Content-Type: application/xml; charset=UTF-8");
  3. echo '<?xml version="1.0" encoding="UTF-8"?>';
  4.  
  5. $hoje = date('Y-m-d');
  6. ?>
  7.  
  8. <urlset
  9. xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
  10. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  11. xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
  12. http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
  13. <url>
  14. <loc>http://www.avancogames.com.br/</loc>
  15. <lastmod><?php echo $hoje;?></lastmod>
  16. <priority>1.00</priority>
  17. <changefreq>daily</changefreq>
  18. </url>
  19. <url>
  20. <loc>http://avancogames.com.br/jogos-torrent</loc>
  21. <lastmod><?php echo $hoje;?></lastmod>
  22. <priority>0.80</priority>
  23. <changefreq>daily</changefreq>
  24. </url>
  25. <url>
  26. <loc>http://www.avancogames.com.br/computador</loc>
  27. <lastmod><?php echo $hoje;?></lastmod>
  28. <priority>0.80</priority>
  29. <changefreq>daily</changefreq>
  30. </url>
  31. <url>
  32. <loc>http://www.avancogames.com.br/xbox-360</loc>
  33. <lastmod><?php echo $hoje;?></lastmod>
  34. <priority>0.80</priority>
  35. <changefreq>daily</changefreq>
  36. </url>
  37. <url>
  38. <loc>http://www.avancogames.com.br/playstation-3</loc>
  39. <lastmod><?php echo $hoje;?></lastmod>
  40. <priority>0.80</priority>
  41. <changefreq>daily</changefreq>
  42. </url>
  43. <url>
  44. <loc>http://www.avancogames.com.br/contato</loc>
  45. <lastmod><?php echo $hoje;?></lastmod>
  46. <priority>0.80</priority>
  47. <changefreq>daily</changefreq>
  48. </url>
  49. <?php
  50.  
  51.  
  52. include '_app/Config.inc.php';
  53.  
  54. $sql_tabela = mysql_query("SELECT * FROM minha tabela ORDER BY id DESC");
  55.  
  56. while($tabela = mysql_fetch_assoc($sql_tabela)){
  57. echo "<url>
  58. <loc>http://www.avancogames.com.br/".$tabela['category']."/".$tabela['slug']."</loc>
  59. <lastmod>".$hoje."</lastmod>
  60. <changefreq>daily</changefreq>
  61. <priority>0.6</priority>
  62. </url>";
  63. }
  64. ?>
  65. </urlset>
Advertisement
Add Comment
Please, Sign In to add comment