index.php 522 B

12345678910111213141516171819202122232425
  1. <?php
  2. include 'header.php';
  3. echo '<main id="main-content">';
  4. if(isset($_GET["Mod"]))
  5. {
  6. if(isset($_SESSION['Name']) || $_GET["Mod"]=="10" || $_GET["Mod"]=="11" || $_GET["Mod"]=="12")
  7. {
  8. include 'mod.php';
  9. }
  10. }
  11. else
  12. {
  13. include 'read.php';
  14. }
  15. 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>';
  16. echo '</body></html>';
  17. ?>