-
Notifications
You must be signed in to change notification settings - Fork 0
/
opdracht2.php
58 lines (47 loc) · 1.35 KB
/
opdracht2.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
<!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>Document</title>
</head>
<body>
<?php
$servername = "localhost";
$databasename = "db_level2_opdr1";
$username = "user1";
$password = "g8bal28";
// Create connection
$conn = new mysqli($servername, $username, $password, $databasename);
$query = 'SELECT * FROM `songs`';
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "Connected successfully" . '<br>';
echo "<form method='POST' action='opdracht5.php'>";
if ($result = $conn -> query($query)) {
while($row = $result->fetch_assoc()){
echo $row['id'] . ' ';
echo $row['artist'] . ', ';
echo $row['title'] . '<input type="submit" value="wijzig ' . $row["id"] . '" name="id"><input type="submit" value="verwijder ' . $row["id"] . '"name="id"><br>';
}
$result -> free_result();
}
echo "</form>";
if(isset($_POST["submitin"])){
header("location: opdracht4.php");
};
?>
<form method="POST">
<Table>
<tr>
<td>
<input type="submit" name="submitin" value="voeg toe" class="button3">
</td>
</tr>
</Table>
</form>
</body>
</html>