-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
62 lines (52 loc) · 1.62 KB
/
index.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
<!--Hier komt een pagina waarbij de gebruiker de ID's kan zien
en er komen knoopen met het verwijderen en wijzigen van de ID"s -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Overzicht van gebruikers</title>
<link rel="stylesheet" href="CSS/master.css">
</head>
<body>
<?php
require_once("php/connection.php");
// pre_r($result);
?>
<div class="row justify-content-center">
<table class="table">
<thead>
<tr>
<th>Naam</th>
<th>GeboorteDatum</th>
<th colspan="2">Action</th>
</tr>
</thead>
<?php
$result = $mysqli->query("SELECT * FROM verjaardagen") or die($mysqli->error);
while ($row = $result->fetch_assoc()): ?>
<tr>
<td><?= $row['naam']; ?></td>
<td><?= $row['geb']; ?></td>
<td><a href="php/actions/edit.php?ID=<?= $row['ID']?>"><button>edit</button></a></td>
<td><a href="php/actions/delete.php?ID=<?= $row['ID']?>"><button>delete</button></a></td>
</tr>
<?php endwhile ?>
</table>
</div>
<br>
<a href="php/actions/toevoegen.php">
<button>Gerbuiker Toevoegen</button>
</a>
<?php
pre_r($result->fetch_assoc());
pre_r($result->fetch_assoc());
function pre_r( $array ) {
echo '<pre>';
print_r($array);
echo '<pre>';
}
?>
</body>
</html>