-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch-pass.php
117 lines (105 loc) · 3.86 KB
/
search-pass.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
session_start();
error_reporting(0);
include('includes/dbconnection.php');
if (strlen($_SESSION['ttmsaid']==0)) {
header('location:logout.php');
} else{
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Toll Tax Management System || Manage Pass</title>
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } )</script>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel='stylesheet' type='text/css' />
<!-- Custom CSS -->
<link href="css/style.css" rel='stylesheet' type='text/css' />
<link href="css/font-awesome.css" rel="stylesheet">
<!-- jQuery -->
<script src="js/jquery.min.js"></script>
<!----webfonts--->
<link href='http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900' rel='stylesheet' type='text/css'>
<!---//webfonts--->
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div id="wrapper">
<?php include_once('includes/sidebar.php');?>
<?php include_once('includes/header.php');?>
<div id="page-wrapper">
<div class="col-md-12 graphs">
<div class="xs">
<h3>Search Pass</h3>
<form class="form-floating ng-pristine ng-invalid ng-invalid-required ng-valid-email ng-valid-url ng-valid-pattern" method="post">
<fieldset>
<div class="form-group">
<label class="control-label">Search by Pass ID / Applicant Name / Vehicle Reg Number</label>
<input type="text" class="form-control1 ng-invalid ng-invalid-required ng-touched" required="true" id="searchdata" name="searchdata" value="">
</div>
<div class="form-group">
<p style="text-align: center;"> <button type="submit" name="search" class="btn btn-primary">Search</button></p>
</div>
</fieldset>
</form>
<div class="bs-example4" data-example-id="simple-responsive-table">
<div class="table-responsive">
<?php
if(isset($_POST['search']))
{
$sdata=$_POST['searchdata'];
?>
<h4 align-text="center">Result against "<?php echo $sdata;?>" keyword </h4>
<table class="table table-bordered">
<thead>
<tr>
<th>S.NO</th>
<th>Pass ID</th>
<th>Name of Applicant</th>
<th>Vehicle Reg. Number</th>
<th>Date of Creation</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php
$ret=mysqli_query($con,"select *from tblpass where Passid like '%$sdata%' || AppName like '%$sdata%' || RegNumber like '%$sdata%'");
$num=mysqli_num_rows($ret);
if($num>0){
$cnt=1;
while ($row=mysqli_fetch_array($ret)) {
?>
<tr>
<th scope="row"><?php echo $cnt;?></th>
<td><?php echo $row['Passid'];?></td>
<td><?php echo $row['AppName'];?></td>
<td><?php echo $row['RegNumber'];?></td>
<td><?php echo $row['CreationDate'];?></td>
<td><a href="view-pass.php?viewid=<?php echo $row['ID'];?>">View</a>
<a href="delete-pass.php?id=<?php echo $row['ID'];?>">/Delete</a></td>
</tr>
<?php
$cnt=$cnt+1;
} } else { ?>
<tr>
<td colspan="8"> No record found against this search</td>
</tr>
<?php } }?></tbody> </table>
</div><!-- /.table-responsive -->
</div>
</div>
<?php include_once('includes/footer.php');?>
</div>
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<!-- Nav CSS -->
<link href="css/custom.css" rel="stylesheet">
<!-- Metis Menu Plugin JavaScript -->
<script src="js/metisMenu.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>
<?php } ?>