-
Notifications
You must be signed in to change notification settings - Fork 0
/
display.php
61 lines (56 loc) · 2.26 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
<?php
require_once('connection.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Crud Operation</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<button class="btn btn-primary my-5"><a href="students.php" class="text-light" style="text-decoration:none;">Add Student</a></button>
<table class="table">
<thead>
<tr>
<th scope="col">S/N</th>
<th scope="col">Name</th>
<th scope="col">Email</th>
<th scope="col">Phone Number</th>
<th scope="col">Current Stack</th>
<th scope="col">Password</th>
<th scope="col">Operations</th>
</tr>
</thead>
<?php
$query = "select * from `csc_pythins`";
$result = mysqli_query($con, $query);
while ($row = mysqli_fetch_assoc($result)) {
$id = $row['id'];
$name = $row['name'];
$email = $row['email'];
$mobile = $row['mobile'];
$stack = $row['stack'];
$password = $row['password'];
echo '
<tr>
<th scope="row">' . $id . '</th>
<td>'.$name.'</td>
<td>'.$email.'</td>
<td>'.$mobile.'</td>
<td>'.$stack.'</td>
<td>'.$password.'</td>
<td>
<button class="btn btn-primary"><a href="update.php?updateid='.$id.'" class="text-light" style="text-decoration:none;">Update</a></button>
<button class="btn btn-danger"><a href="delete.php?deleteid='.$id.'" class="text-light" style="text-decoration:none;">Delete</a></button>
</td>
</tr>';
}
?>
</table>
</div>
</body>
</html>