12345678910111213141516171819202122232425 |
- <?php
- include 'header.php';
-
-
-
-
- echo '<main id="main-content">';
- if(isset($_GET["Mod"]))
- {
- if(isset($_SESSION['Name']) || $_GET["Mod"]=="10" || $_GET["Mod"]=="11" || $_GET["Mod"]=="12")
- {
- include 'mod.php';
- }
- }
- else
- {
- include 'read.php';
- }
- echo '</main><div id="con" role="contentinfo"><br><br><br><br><center><a href=index.php?Mod=10>Image License</a> <a href=index.php?Mod=11>Rules and legal Information (Impressum)</a> <a href=index.php?Mod=12>Help</a></center></div>';
- echo '</body></html>';
- ?>
|