Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1. <!-- Header -->
  2. <div id="header">
  3. <div class="header">
  4. <div style="float:right; background-color:#0d4a94;padding:5px;">Hoş Gelidiniz, <strong><?php  echo $_SESSION["kadi"];?></strong> <a href="/cikis">[Çıkış Yap]</a></div>
  5. <h1>Prototurk Yönetim Paneli</h1>
  6. <p>Kendi Kendini Yönetebilen Sistem v1</p>
  7. </div></div>
  8. <!--#Header -->
  9. <!-- Menü -->
  10. <div id="menu">
  11. <a href="index.php">Anasayfa</a>
  12. <a href="index.php?git=ayarlar">Genel Ayarlar</a>
  13. <a href="index.php?git=sayfalar">Sabit Sayfalar</a>
  14. <a href="index.php?git=uyeler">Üyeler</a>
  15. <a href="index.php?git=uyegrublari">Üye Grupları</a>
  16. <a href="index.php?git=konular">Konular</a>
  17. <a href="index.php?git=kategoriler">Kategoriler</a>
  18. <a href="index.php?git=yorumlar">Yorumlar</a>
  19. <a href="index.php?git=etiketler">Etiketler</a>
  20. </div>
  21. <!--#Menü -->
  22. <!-- İçerik -->
  23. <div id="icerik">
  24. <?php
  25. $git = $_GET["git"];
  26.     switch($git){
  27.         case "ayarlar";
  28.             include ("ayarlar.php");
  29.         break;
  30.        
  31.    
  32.     }
  33. ?>
  34. </div>
  35. <!--#İçerik -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement