-
Notifications
You must be signed in to change notification settings - Fork 0
/
show_news.php
30 lines (25 loc) · 1 KB
/
show_news.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
<?php if (!defined('IN_SITE')) { echo "Zugriff verweigert!"; die(); }
if($db->isUserLoggedIn()) {
$entries = $db->getAllEntries("DESC");
// Wenn -1 zurückgegen wurde, dann nichts anzeigen. Habe ich der einfachheithalber weggelassen
// Ist eine einfache if-Abfrage :)
echo "<table>";
echo "<th>Datum</th>";
echo "<th>Titel</th>";
echo "<th>Autor</th>";
echo "<th>Bearbeiten</th>";
echo "<th>Löschen</th>";
foreach($entries as $entry) {
echo "<tr>";
echo "<td>" . date('d.m.y H:i:s', strtotime($entry['Datum'])) . "</td>";
echo "<td>" . $entry['Headline'] . "</td>";
echo "<td>" . $entry['Vorname'] . " " . $entry['Nachname'] . "</td>";
echo "<td><a href='index.php?section=edit_news&eintrag=" . $entry['Eintrag_ID'] . "'>X</a></td>";
echo "<td><a href='index.php?section=delete_news&eintrag=" . $entry['Eintrag_ID'] . "'>X</a></td>";
echo "</tr>";
}
echo "</table>";
} else {
header("Location: index.php");
}
?>