forked from studio-404/trade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.php
101 lines (85 loc) · 2.38 KB
/
sitemap.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php
header("Content-type: text/xml");
define("DIR",__FILE__);
@include('config.php');
@include('functions/connection.php');
$connection = new connection();
$conn = $connection->conn($c);
?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<?php
try{
$sql = 'SELECT `slug` FROM `studio404_module_item` WHERE `status`!=1 ORDER BY `id` DESC';
$prepare = $conn->prepare($sql);
$prepare->execute();
if($prepare->rowCount() > 0){
$fetch = $prepare->fetchAll(PDO::FETCH_ASSOC);
foreach($fetch as $val){
echo '<url>';
echo '<loc>http://tradewithgeorgia.com/en/'.$val['slug'].'</loc>';
echo '<changefreq>always</changefreq>';
echo '</url>';
}
}
?>
<?php
}catch(Exception $e){
}
?>
<url>
<loc>http://tradewithgeorgia.com/en/start</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/About-georgia/Country-profile</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/About-georgia/Doing-Business-in-Georgia</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/About-georgia/useful-information</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/About-georgia/useful-links</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/export-catalog</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/trade-map/loadmap</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/trade-map/export-analysis</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/trade-map/how-to-export-from-Georgia</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/trade-map/useful-links</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/about-us/Enterprise-Georgia</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/about-us/our-services</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/about-us/events</loc>
<changefreq>always</changefreq>
</url>
<url>
<loc>http://tradewithgeorgia.com/en/about-us/contact-us</loc>
<changefreq>always</changefreq>
</url>
</urlset>