ok

Mini Shell

Direktori : /home/ngwcolle/www/LIBRARY-NGWC/admin/
Upload File :
Current File : //home/ngwcolle/www/LIBRARY-NGWC/admin/bwdates-report-result.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{


?>
<!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>NGWC | B/w Dates Report</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="https://cdn.datatables.net/buttons/2.3.2/css/buttons.dataTables.min.css" rel="stylesheet">
<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">
<?php
$fdate=$_POST['fromdate'];
$tdate=$_POST['todate'];

?>
                    <!-- Page Heading -->
                    <h1 class="h3 mb-2 text-gray-800">Book Issue Report Result From <?php echo $fdate;?> to <?php echo $tdate;?> </h1>
    

                    <!-- DataTales Example -->
                    <div class="card shadow mb-4">
                        <div class="card-header py-3">
                            <h6 class="m-0 font-weight-bold text-primary">Book Issue Report Result From</h6>
                        </div>
                        <div class="card-body">
                            <div class="table-responsive">
                                <form name="assignto" method="post">
                    <table class="table table-bordered" id="example" width="100%" cellspacing="0">
                                    <thead>
                                         <tr>
                                            <th>Sno.</th>
                                            <th>Roll No</th>
                                            <th>Book No</th>
                                            <th>Book Name </th>
                                             <th>Issue Date</th>
											 <th>Due Date</th>
                                             <th>Borrow Status</th>
                                            <th>Return Date</th>
											<th>Penalty Amount</th>
                                        </tr>
                                    </thead>
                                      <tfoot>
                                        <tr>
                                            <th>Sno.</th>
                                            <th>Roll No</th>
                                            <th>Book No</th>
                                            <th>Book Name </th>
                                             <th>Issue Date</th>
											 <th>Due Date</th>
                                             <th>Borrow Status</th>
                                            <th>Return Date</th>
											<th>Penalty Amount</th>
                                        </tr>
                                    </tfoot>
                                    <tbody>
<?php $query=mysqli_query($con,"select borrow_book.*,tbl_students.*,tbl_book.* from borrow_book inner join tbl_students on borrow_book.user_id=tbl_students.rollno inner join tbl_book on borrow_book.book_id=tbl_book.barcode where date(borrow_book.date_borrowed)between '$fdate' and '$tdate'
    ");
$cnt=1;
while($row=mysqli_fetch_array($query)){
?>
            
                        <tr>
                                            <td><?php echo $cnt;?></td>
                                            <td><?php echo $row['user_id'];?></td>
                                            <td><?php echo $row['book_id'];?></td>
                                            <td><?php echo $row['booktitle'];?></td>
                                            <td><?php echo $row['date_borrowed'];?></td>
                                            <td><?php echo $row['due_date'];?></td>
											<td><?php echo $row['borrowed_status'];?></td>
											<td><?php echo $row['date_returned'];?></td>
											<td><?php echo $row['book_penalty'];?></td>
                                            
                                        </tr>
                               <?php $cnt++;
                           } ?>
                                    </tbody>
                                </table>
                                     </form>
                            </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>
	<script src="https://cdn.datatables.net/buttons/2.3.2/js/dataTables.buttons.min.js"></script>
	<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
	<script src="vendor/datatables/dataTables.bootstrap4.min.js"></script>
	<script src="https://cdn.datatables.net/buttons/2.3.2/js/buttons.html5.min.js"></script>
	<script>
	var $fileName = 'Book_Issue';
	
	$(document).ready(function() {
    $('#example').DataTable( {
        dom: 'Bflrtip',
        buttons: [
           {
                extend: 'excelHtml5',
                title: $fileName
            }
        ]
    } );
} );
	</script>
</body>
</html>
<?php } ?>

Zerion Mini Shell 1.0