
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();
$vehicles = $function->getVehicleDetails(NULL,1,NULL);
//print_r($vehicles); //exit;
/*if(empty($_SESSION['userId'])){
header("Location: index.php");
exit();
}*/
?>
<!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</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">
</head>
<body>
<?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">Vehicles List</h1>
</div>
</header>
<!--end banner -->
<!-- Page Content -->
<div class=" container-fluid padding-0">
<div class="container mt-5">
<div class="row">
<h2>RWA's Vehicle List</h2>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>S.No</th>
<th>Name</th>
<th>House No</th>
<th>Vehicle Type</th>
<th>Vehicle No</th>
<th>Model No</th>
</tr>
</thead>
<tbody>
<?php for($i=0;$i<count($vehicles);$i++){ ?>
<tr>
<td><?=$i+1;?></td>
<td class="center"><?=$vehicles[$i]['plot_owner_name'];?></td>
<td class="center"><?=$vehicles[$i]['house_no'];?></td>
<td class="center"><?=$vehicles[$i]['vehicle_type'];?></td>
<td class="center"><?=$vehicles[$i]['vehicle_no'];?></td>
<td class="center"><?=$vehicles[$i]['vehicle_modelname'];?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>
</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>
<script src="js/jquery.form-validator.min.js"></script>
<script type="text/javascript">
$("#addmember").validate({
rules: {
username: {
required: true
},
password: {
required: true
}
},
messages: {
username: {
required: "Please enter Username"
},
mobile: {
required: "Please enter Password"
}
},
submitHandler: function(form) {
form.submit();
}
});
</script>
</body>
</html>


PK 99