\n
\n"; echo "
\n"; echo "\n
"; $lastlevel = 0; $sitefile = fopen("SITEMAP/map.txt", "r"); while (!feof($sitefile)) { $line = fgets($sitefile, 100); if ($line){ preg_match("/(~*)(.*?);(.*)\n/", $line, $row); $thislevel = strlen($row[1]); if ($thislevel > $lastlevel) echo "
    \n"; elseif ($thislevel < $lastlevel) echo "
\n"; if ($thislevel ==1 && $lastlevel != 0) echo "
\n
    \n"; echo "
  • $row[2]
  • \n"; $lastlevel = $thislevel; } } fclose($sitefile); echo "
\n"; echo "
\n"; echo "
\n\n"; include("footer.html"); ?>