-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodify.php
More file actions
126 lines (112 loc) · 4.68 KB
/
Copy pathmodify.php
File metadata and controls
126 lines (112 loc) · 4.68 KB
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
118
119
120
121
122
123
124
125
126
<?php
// Include config file
require_once "assets/action/config.php";
/* Attempt to connect to MySQL database */
$link = mysqli_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME);
// Check connection
if($link === false){
die("ERROR: Could not connect. " . mysqli_connect_error());
}
// Prepare a select statement
$sql = "SELECT * FROM transactions";
$result = mysqli_query($link, $sql) or die(mysqli_error($link));
$tableArray = array();
$counter = 0;
while ($row = mysqli_fetch_array($result))
{
$tableArray[$counter]['name'] = $row['name'];
$tableArray[$counter]['citizenID'] = $row['citizenID'];
$tableArray[$counter]['phone'] = $row['phone'];
$tableArray[$counter]['licensePlate'] = $row['licensePlate'];
$tableArray[$counter]['vehicle'] = $row['vehicle'];
$tableArray[$counter]['id'] = $row['id'];
$counter++;
}
//Close Connection
mysqli_close($link);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title><?php echo $_GET["cat"]; ?> Results - <?php echo $_GET["search"]; ?></title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--===============================================================================================-->
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/bootstrap/css/bootstrap.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/animate/animate.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/select2/select2.min.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="vendor/perfect-scrollbar/perfect-scrollbar.css">
<!--===============================================================================================-->
<link rel="stylesheet" type="text/css" href="css/util.css">
<link rel="stylesheet" type="text/css" href="css/main-search.css?ver=1.0">
<!--===============================================================================================-->
</head>
<body>
<div class="limiter">
<div class="container-table100">
<div class="wrap-table100">
<div class="table">
<div class="row header">
<div class="cell">
Name
</div>
<div class="cell">
Citizen ID
</div>
<div class="cell">
Phone
</div>
<div class="cell">
License Plate
</div>
<div class="cell">
Vehicle
</div>
<div class="cell">
Delete
</div>
</div>
<?php $i = 1; foreach($tableArray as $row) {?>
<div class="row">
<div class="cell" data-title="Name">
<?php echo $row['name'] ?>
</div>
<div class="cell" data-title="Citizen ID">
<?php echo $row['citizenID'] ?>
</div>
<div class="cell" data-title="Phone">
<?php echo $row['phone'] ?>
</div>
<div class="cell" data-title="License Plate">
<?php echo $row['licensePlate'] ?>
</div>
<div class="cell" data-title="vehicle">
<?php echo $row['vehicle'] ?>
</div>
<div class="cell" data-title="vehicle">
<a href="delete.php?id=<?php echo $row['id']; ?>">delete</a></td>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
</div>
<!--===============================================================================================-->
<script src="vendor/jquery/jquery-3.2.1.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/bootstrap/js/popper.js"></script>
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!--===============================================================================================-->
<script src="vendor/select2/select2.min.js"></script>
<!--===============================================================================================-->
<script src="js/main-search.js"></script>
</body>
</html>