ok
Direktori : /proc/thread-self/root/proc/self/root/home/ngwcolle/public_html/LIBRARY-NGWC/admin/ |
Current File : //proc/thread-self/root/proc/self/root/home/ngwcolle/public_html/LIBRARY-NGWC/admin/settings.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>"; } // add deprmtnet if(isset($_POST['submit1'])) { $tname=strtoupper($_POST['maxbooks']); // $tmember=$_POST['teammember']; $query=mysqli_query($con, "update settings set qnty_books='$tname' where id='1'"); if ($query) { echo '<script>alert("Allowed Books set per user.")</script>'; echo "<script>window.location.href ='settings.php'</script>"; }else{ echo '<script>alert("Something Went Wrong. Please try again.")</script>'; } } if(isset($_POST['submit2'])) { $maxallow=strtoupper($_POST['maxallow']); // $tmember=$_POST['teammember']; $query1=mysqli_query($con, "update settings set no_of_days='$maxallow' where id='1'"); if ($query1) { echo '<script>alert("Allowed days set per user.")</script>'; echo "<script>window.location.href ='settings.php'</script>"; }else{ echo '<script>alert("Something Went Wrong. Please try again.")</script>'; } } if(isset($_POST['submit3'])) { $penalty=strtoupper($_POST['penalty']); // $tmember=$_POST['teammember']; $query1=mysqli_query($con, "update settings set penalty_amount='$penalty' where id='1'"); if ($query1) { echo '<script>alert("Penalty amount set per user for defaulter.")</script>'; echo "<script>window.location.href ='settings.php'</script>"; }else{ echo '<script>alert("Something Went Wrong. Please try again.")</script>'; } } //end addition $allowed_book_query= mysqli_query($con,"select * from settings ") or die (mysqli_error()); while ($row11= mysqli_fetch_array ($allowed_book_query) ){ $no_of_days=$row11['no_of_days']; $qnty_books=$row11['qnty_books']; $penalty_amount=$row11['penalty_amount']; } ?> <!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>Settings</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"><i class= "fa fa-cog fa-spin"></i> Library Setup</h1> </div> <!-- DataTales Example --> <div class="card shadow mb-4"> <div class="card-header py-3"> <div class="float-left"> <h6 class="m-0 py-2 font-weight-bold text-primary">Library Mangement Setup</h6></div> <div class="float-right"><a href="dashboard.php" class="float-right mt-0 btn btn-success">Back</a></div> </div> <div class="card-body"> <div class="row"> <div class="col-sm-6"> <h3 style="display:inline">Allowed Books</h3> <span style="display:inline">Per user</span> <table> <tr class="table"> <th>Quantity</th> <th>Action</th> </tr> <tr class="table"> <th><?php echo $qnty_books;?></th> <th><button type="button" class="btn btn-info btn-sm viewbtn"> <i class="fas fa-edit"></i> </button></th> </tr> </table> </div> <div class="col-sm-6"> <h3 style="display:inline">Allowable</h3> <span style="display:inline">days</span> <table> <tr class="table"> <th>No. of day/days</th> <th>Action</th> </tr> <tr> <td><?php echo $no_of_days;?></td> <td><button type="button" class="btn btn-info btn-sm daysbutton"> <i class="fas fa-edit"></i></button></td> </tr> </table> </div> </div> <div class="row"> <div class="col-sm-6"> <h3 style="display:inline">Penalty</h3> <span style="display:inline">Per day</span> <table> <tr class="table"> <th>Amount</th> <th>Action</th> </tr> <tr> <td><?php echo $penalty_amount;?></td> <td><button type="button" class="btn btn-info btn-sm penalty"> <i class="fas fa-edit"></i> </button></td> </tr> </table> </div> <!-- <div class="col-sm-6"> <h6>Set No of Days in Maximum</h6> </div> --> </div> </div> </div> </div> <!-- /.container-fluid --> <!-- popu up modal array_search --> <div class="modal fade" tabindex="-1" role="dialog" id="maxbook"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Allowed Books per USer</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action="" method="POST"> <div class="modal-body"> <div class="form-group"> <label for="">Max. books issued per user</label> <input type="number" name="maxbooks" class="form-control" placeholder="Enter First Name"> </div> </div> <div class="modal-footer"> <button type="submit" class="btn btn-primary" name="submit1">Save changes</button> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> </div> </div> </form> </div> </div> <!-- no of days modal --> <div class="modal fade" tabindex="-1" role="dialog" id="maxdays"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Allowable days</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action="" method="POST"> <div class="modal-body"> <div class="form-group"> <label for="">Max. Days Allowed per user</label> <input type="number" name="maxallow" class="form-control" placeholder="Enter First Name"> </div> </div> <div class="modal-footer"> <button type="submit" class="btn btn-primary" name="submit2">Save changes</button> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> </div> </div> </form> </div> </div> <!-- penalty modal --> <div class="modal fade" tabindex="-1" role="dialog" id="penalty"> <div class="modal-dialog" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title">Penalty Caluculated</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> <form action="" method="POST"> <div class="modal-body"> <div class="form-group"> <label for="">Penalty Amount per day</label> <input type="number" name="penalty" class="form-control" placeholder="Enter First Name"> </div> </div> <div class="modal-footer"> <button type="submit" class="btn btn-primary" name="submit3">Save changes</button> <button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button> </div> </div> </form> </div> </div> <!-- popuomodal area ends --> </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> <script> $('.viewbtn').on('click',function(){ $('.modal-body').load('content.html',function(){ $('#maxbook').modal({show:true}); }); }); // no fo days modal $('.daysbutton').on('click',function(){ $('.modal-body').load('content.html',function(){ $('#maxdays').modal({show:true}); }); }); //penalty $('.penalty').on('click',function(){ $('.modal-body').load('content.html',function(){ $('#penalty').modal({show:true}); }); }); </script> </body> </html> <?php } ?>