
PK 
<?php
ob_start();
//error_reporting(E_ALL ^ E_NOTICE);
@session_start();
ini_set('allow_url_include',1);
date_default_timezone_set("Asia/Kolkata");
set_time_limit(600);
ini_set('max_execution_time',600);
include 'admin/includes/settings/constant.php';
require_once 'admin/includes/settings/PDODB.php';
include 'admin/includes/modules/functions.php';
$function = new FUNCTIONS();
$vaccineTransaction = $function->getVaccineTransactionDetails(NULL,NULL);
//print_r($vaccineTransaction[0]);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>RWA Sectore 40 Noida | Contact</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/noida40.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<link href="css/bootstrap-dropdownhover.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.1.0/css/all.css" integrity="sha384-lKuwvrZot6UHsBSfcMvOkWwlCMgc0TaWr+30HWe3a4ltaBwTZhyTEggF5tJv8tbt" crossorigin="anonymous">
</head>
<body class="body-bg">
<?php include_once 'header.php'; ?>
<!-- banner -->
<header class="bg-info text-center py-5 mb-4">
<div class="container">
<h1 class="font-weight-light text-white heading">vaccination Detail</h1>
</div>
</header>
<!-- Page Content -->
<div class="container-fluid padding-0">
<!--container-->
<div class="container mt-4">
<div class="row">
<!-- Sidebar Column -->
<div class="col-lg-12">
<div class="row">
<div class="card">
<!-- <div class="header">
<h2>Account Details</h2>
</div> -->
<div class="body table-responsive">
<table class="table table-bordered table-striped table-hover table-responsive" style="display:table">
<thead style="background:#a6a6a6; color:#fff;">
<tr>
<th scope="col">S.no.</th>
<th scope="col">Reciept/<br>Demand Id</th>
<th scope="col">Name</th>
<th scope="col">House No.</th>
<th scope="col">Amount Paid</th>
<th scope="col">Number of Dose</th>
<th scope="col">Payment Date</th>
<th scope="col">Pay Mode</th>
</tr>
</thead>
<tbody>
<?php
$i=0;
foreach ($vaccineTransaction as $key => $value) {
$i++;
?>
<tr>
<th scope="row"><?=$i;?></th>
<td><?=$value['orderid'];?></td>
<td><?=$value['owner_name'];?></td>
<td><?=$value['house_no'];?></td>
<td><?=$value['txnamount'];?></td>
<td><?=$value['txnamount']/1050;?></td>
<?php if(!empty($value['date'])) { ?>
<td><?=date('jS M, Y h:i A', strtotime($value['date']));?></td>
<?php }else { ?>
<td><?=date('jS M, Y h:i A', strtotime($value['txndate']));?></td>
<?php } ?>
<td><?php if($value['paymentmode']=='PPI' || $value['paymentmode']=='CC' || $value['paymentmode']=='DC' || $value['paymentmode']=='UPI' || $value['paymentmode']=='NB'){ echo"Online Payment";}else{echo $value['paymentmode'];}?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- Content Column -->
</div>
</div>
<!--end container-->
</div>
<!-- end Page Content -->
<!-- Footer -->
<?php include_once'footer.php';?>
<!-- End Footer -->
<?php include_once'login.php';?>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/bootstrap-4-hover-navbar.js"></script>
<!--login window-->
<script src="js/jquery.form-validator.min.js"></script>
</body>
</html>


PK 99