test3
[smail.git/.git] / map.php
1     <head>
2         <link rel='stylesheet' type='text/css' href='css/all.css'>
3     </head>
4     <body>
5         <?php
6         $xmlDoc=simplexml_load_file('sitemap.xml');
7         foreach ($xmlDoc as $node){
8             echo '<a href="'.$node->link.'">'.$node->name.'</a><br>';
9         }
10         ?>
11     </body>
12 </html>