-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdisplay.php
68 lines (60 loc) · 1.6 KB
/
display.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
<?php
include "connect.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crud</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
</head>
<style>
.btn a {
text-decoration: none !important;
}
</style>
<body>
<div class="container">
<button class="btn btn-primary my-5"> <a href="user.php" class="text-light">Add user</a></button>
<table class="table">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Name</th>
<th scope="col">Email</th>
<th scope="col">Mobile</th>
<th scope="col">Password</th>
<th scope="col">Operation</th>
</tr>
</thead>
<tbody>
<?php
$sql = "Select * from `crud`";
$result = mysqli_query($conn,$sql);
if($result){
while($row=mysqli_fetch_assoc($result)){
$id= $row['id'];
$name=$row['name'];
$email=$row['email'];
$mobile=$row['mobile'];
$password=$row['password'];
echo '<tr>
<th scope="row">'.$id.'</th>
<td>'.$name.'</td>
<td>'.$email.'</td>
<td>'.$mobile.'</td>
<td>'.$password.'</td>
<td>
<button class="btn btn-primary"><a href="update.php?updateid='.$id.'" class="text-light">Update</a></button>
<button class="btn btn-danger"><a href="delete.php?deleteid='.$id.'" class="text-light">Delete</a></button>
</td>
</tr>';
}
};
?>
</tbody>
</table>
</div>
</body>
</html>