Server IP : 62.72.28.201 / Your IP : 3.135.206.25 Web Server : LiteSpeed System : Linux in-mum-web1113.main-hosting.eu 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : u249650955 ( 249650955) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : ON Directory (0755) : /home/u249650955/domains/ladyflorencepublicschool.com/public_html/admin_area/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); if(!isset($_SESSION['user_email'])){ echo "<script>window.open('login.php?not_admin=You are not an Admin','_self')</script>"; } else{ ?> <!DOCTYPE> <html> <head> <title>This is Admin Panal</title> <link rel="stylesheet" href="styles/style.css" media="all"/> </head> <body> <div class="main_wrapper"> <div id="header"></div> <div id="right"> <h2>Manage contant</h2> <h4>Slider</h4> <a href="index.php?insert_slider">Insert Slider</a> <a href="index.php?view_slider">View All Slider</a> <h4>Achievers Section</h4> <a href="index.php?insert_achievers">Insert Achievers</a> <a href="index.php?view_achievers">View All Achievers</a> <h4>Testimonial</h4> <a href="index.php?insert_testimonial">Insert Testimonial</a> <a href="index.php?view_testimonial">View Testimonial</a> <h4>Gallery Page</h4> <a href="index.php?insert_gallery">Insert Gallery</a> <a href="index.php?view_gallery">View All Gallery</a> <a href="index.php?insert_video_gallery">Insert Video Gallery</a> <a href="index.php?view_video_gallery">View All Video Gallery</a> <a href="index.php?insert_media_gallery">Insert Media Gallery</a> <a href="index.php?view_media_gallery">View All Media Gallery</a> <h4>Activity Page</h4> <a href="index.php?insert_activity">Insert Activity</a> <a href="index.php?view_activity">View Activity</a> <h4>Syllabus</h4> <a href="index.php?insert_syllabus">Insert Syllabus</a> <a href="index.php?view_syllabus">View Syllabus</a> <h4>Hollyday Home Work</h4> <a href="index.php?insert_hhw">Insert HHW</a> <a href="index.php?view_hhw">View HHW</a> <h4>Club</h4> <a href="index.php?insert_club_categories">Insert Club Categories</a> <a href="index.php?view_club_categories">View Club Categories</a> <a href="index.php?insert_club">Insert Club</a> <a href="index.php?view_club">View Club</a> <a href="logout.php">Admin Logout</a> </div> <div id="left"> <h2 style="color: red; text-align: center;"><?php echo @$_GET['logged_in']; ?></h2> <?php if(isset($_GET['insert_slider'])){ include("insert_notic.php"); } if(isset($_GET['view_slider'])){ include("view_notic.php"); } if(isset($_GET['insert_achievers'])){ include("insert_achi.php"); } if(isset($_GET['view_achievers'])){ include("view_achi.php"); } if(isset($_GET['insert_testimonial'])){ include("insert_testimonial.php"); } if(isset($_GET['view_testimonial'])){ include("view_testimonial.php"); } if(isset($_GET['insert_gallery'])){ include("insert_gallery.php"); } if(isset($_GET['view_gallery'])){ include("view_gallery.php"); } if(isset($_GET['insert_video_gallery'])){ include("insert_video_gallery.php"); } if(isset($_GET['view_video_gallery'])){ include("view_video_gallery.php"); } if(isset($_GET['insert_media_gallery'])){ include("insert_media_gallery.php"); } if(isset($_GET['view_media_gallery'])){ include("view_media_gallery.php"); } if(isset($_GET['insert_activity'])){ include("insert_activity.php"); } if(isset($_GET['view_activity'])){ include("view_activity.php"); } if(isset($_GET['insert_syllabus'])){ include("insert_syllabus.php"); } if(isset($_GET['view_syllabus'])){ include("view_syllabus.php"); } if(isset($_GET['insert_hhw'])){ include("insert_hhw.php"); } if(isset($_GET['view_hhw'])){ include("view_hhw.php"); } if(isset($_GET['insert_club_categories'])){ include("insert_club_categories.php"); } if(isset($_GET['view_club_categories'])){ include("view_club_categories.php"); } if(isset($_GET['insert_club'])){ include("insert_club.php"); } if(isset($_GET['view_club'])){ include("view_club.php"); } ?> </div> </div> </body> </html> <?php } ?>