ok
Direktori : /home/ngwcolle/public_html/admin/ |
Current File : /home/ngwcolle/public_html/admin/manage-question.php |
<?php session_start(); //DB conncetion include_once('includes/config.php'); error_reporting(0); //validating Session if (strlen($_SESSION['aid']==0)) { header('location:logout.php'); } else{ //Code for record deletion if($_GET['teamid']){ $tid=$_GET['teamid']; mysqli_query($con,"delete from tblteams where id ='$tid'"); echo "<script>alert('Data Deleted');</script>"; echo "<script>window.location.href='manage-teams.php'</script>"; } if(isset($_GET['deleteid'])) { $querySelect = "select * from tbl_question where id = ".$_GET['deleteid']; $ResultSelectStmt = mysqli_query($con,$querySelect); $fetchRecords = mysqli_fetch_assoc($ResultSelectStmt); $fetchImgTitleName = $fetchRecords['docpath']; $createDeletePath = "../upload/doc/".$fetchImgTitleName; if(unlink($createDeletePath)) { $liveSqlQQ = "delete from tbl_question where id = ".$fetchRecords['id']; $rsDelete = mysqli_query($con, $liveSqlQQ); if($rsDelete) { header('location:manage-question.php?success=true'); exit(); } } else { $displayErrMessage = "Unable to delete Question"; } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <meta name="description" content=""> <meta name="author" content=""> <title>Manage Old Questions</title> <!-- Custom fonts for this template --> <link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css"> <link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet"> <!-- Custom styles for this template --> <link href="css/sb-admin-2.min.css" rel="stylesheet"> <!-- Custom styles for this page --> <link href="vendor/datatables/dataTables.bootstrap4.min.css" rel="stylesheet"> </head> <body id="page-top"> <!-- Page Wrapper --> <div id="wrapper"> <!-- Sidebar --> <?php include_once('includes/sidebar.php');?> <!-- End of Sidebar --> <!-- Content Wrapper --> <div id="content-wrapper" class="d-flex flex-column"> <!-- Main Content --> <div id="content"> <!-- Topbar --> <?php include_once('includes/topbar.php');?> <!-- End of Topbar --> <!-- Begin Page Content --> <div class="container-fluid"> <!-- Page Heading --> <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800">Manage Question Bank</h1> </div> <!-- DataTales Example --> <div class="card shadow mb-4"> <div class="card-header py-3"> <div class="float-left"><h6 class="m-0 font-weight-bold text-primary">Manage Question Bank</h6></div> <div class="float-right"> <a href="add-questionbank.php" class="btn btn-success"><i class="fa fa-upload" aria-hidden="true"></i> Upload Question</a> <!-- <a href="dept_add-gallery-1.php" class="btn btn-info"><i class="fa fa-upload" aria-hidden="true"></i> Upload Dept.Images</a> --> </div> </div> <div class="card-body"> <div class="table-responsive"> <table class="table table-bordered" id="dataTable" width="100%" cellspacing="0"> <thead> <tr> <th>Sno.</th> <th>Question name</th> <th>Exam Year</th> <th>Subject</th> <th>Semester</th> <th>Document</th> <!-- <th>Status</th> --> <th>Action</th> </tr> </thead> <tbody> <?php $query=mysqli_query($con,"select tbl_question.*,tbl_subject.subname as subname from tbl_question inner join tbl_subject on tbl_question.subject=tbl_subject.id order by tbl_question.id desc "); $cnt=1; while($row=mysqli_fetch_array($query)){ ?> <tr> <td><?php echo $cnt;?></td> <td><?php echo $row['quesname'];?></td> <td><?php echo $row['examyear'];?></td> <td><?php echo $row['subname'];?></td> <td><?php echo $row['semester'];?></td> <td> <a href="../upload/doc/<?php echo $row['docpath']; ?>" alt="" target="_blank">View </a> </td> <td> <!-- <a href="edit-team.php?teamid=<php echo $row['id'];?>&&tname=<php echo $row['teamName'];?>" class="btn-sm btn-primary">Edit</a> --> <a href="?deleteid=<?php echo $row['id'];?>" onclick="return confirm('Do you really want to delete the Question?');" class="btn-sm btn-danger">Delete</a></td> </tr> <?php $cnt++; } ?> </tbody> </table> </div> </div> </div> </div> <!-- /.container-fluid --> </div> <!-- End of Main Content --> <!-- Footer --> <?php include_once('includes/footer.php');?> <!-- End of Footer --> </div> <!-- End of Content Wrapper --> </div> <!-- End of Page Wrapper --> <!-- Scroll to Top Button--> <?php include_once('includes/footer2.php');?> <!-- Bootstrap core JavaScript--> <script src="vendor/jquery/jquery.min.js"></script> <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script> <!-- Core plugin JavaScript--> <script src="vendor/jquery-easing/jquery.easing.min.js"></script> <!-- Custom scripts for all pages--> <script src="js/sb-admin-2.min.js"></script> <!-- Page level plugins --> <script src="vendor/datatables/jquery.dataTables.min.js"></script> <script src="vendor/datatables/dataTables.bootstrap4.min.js"></script> <!-- Page level custom scripts --> <script src="js/demo/datatables-demo.js"></script> </body> </html> <?php } ?>