-
Notifications
You must be signed in to change notification settings - Fork 0
/
wunschliste.php
65 lines (58 loc) · 1.93 KB
/
wunschliste.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
<!--Wunschliste des Nutzers-->
<?php
include "includes/assertLogin.php"//Einbindung Kontrolle Eingeloggt
?>
<!DOCTYPE html>
<html>
<head>
<?php include "includes/head.php" ?>
</head>
<body>
<?php
$name = $_SESSION['vorname'];
?>
<?php
$page = "wunschliste";
//Einbinden von sämtlichen "Bausteinen" für den Basic Aufbau der Webseite:Bildbanner, HamburgerMenü und Navigationsleiste
include "includes/headerbox.php";
include "includes/hamburgerMenu.php";
include "includes/navigationBar.php";
?>
<h1> Wunschliste von <?php echo $name ?> </h1>
<div class="search-result">
<?php
//Datenbankabfrage aller Medien, die sich auf der Wunschliste des Nutzers befinden, Darstellung in Tabellenform
$sql = "SELECT medium.name, datei.adr, medium.id, medium.beschreibung, medium.erntezeit, medium.standort
FROM medium
INNER JOIN datei ON medium.id = datei.medium_id
JOIN wunschliste ON medium.id = wunschliste.medium_id WHERE wunschliste.user_id = $_SESSION[uid]
ORDER BY medium.name";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
echo "<table>";
echo "<tr>";
echo "<th></th>";
echo "<th>Name</th>";
echo "<th>Standort</th>";
echo "<th>Jahreszeit</th>";
echo "</tr>";
while ($row = mysqli_fetch_assoc($result)) {
echo "<tr>";
echo "<td> <img class='image' style='width:70px;' src='" . $row["adr"] . "' /></td><td>
<a href ='detail.php?id= " . $row["id"] . "'>" . $row["name"] . "</a> </td>";
echo "<td>" . $row["standort"] . "</td>";
echo "<td>" . $row["erntezeit"] . "</td>";
echo "</tr>";
}
echo "</table>";
mysqli_free_result($result);
} else {//keine Medien
echo "Keine Kräuter auf der Wunschliste";
}
?>
</div>
<?php
include "includes/footerbox.php";//Einbindung Footer
?>
</body>
</html>