blob: 558596b3850aa162189468fe9c5d4c10b2c9013f (
plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
<?php
$title="Gospelchor Adlershof";
require_once __DIR__ . '/header.php';
?>
<!-- Main component for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>Willkommen</h1>
<p>
<a class="btn btn-lg btn-primary" href="/proben.php" role="button">Proben eintragen »</a>
<a class="btn btn-lg btn-primary" href="/konzert.php" role="button">Konzert eintragen »</a>
</p>
</div>
<?php
require_once __DIR__ . '/code/termine.php';
$konzert = $konzert[0];
if ( ! empty($_SESSION) && ! is_null($_SESSION["error"]) ) {
?>
<div class="alert alert-danger" role="alert">
<?php
var_dump($_SESSION);
echo htmlentities($_SESSION["error"]);
unset($_SESSION["error"]);
?>
</div>
<?php
} else if ( ! empty($_SESSION) && ! is_null($_SESSION["success"]) ) {
?>
<div class="alert alert-success" role="alert">
<?php
echo htmlentities($_SESSION["success"]);
unset($_SESSION["success"]);
?>
</div>
<?php
}
?>
<h3>Das nächste Konzert</h3>
<div class="table-responsive">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>Termin</th>
<th>Uhrzeit</th>
<th>Beschreibung</th>
<th>Anfahrt</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<?php
echo htmlentities($konzert["termin"]);
?>
</td>
<td>
<?php
echo htmlentities($konzert["uhrzeit"]);
?>
</td>
<td>
<?php
echo str_replace("<strong>", "<strong>", str_replace("</strong>", "</strong>", htmlentities($konzert["beschreibung"])));
?>
</td>
<td>
<?php
echo htmlentities($konzert["anfahrt"]);
?>
</td>
</tr>
</tbody>
</table>
</div>
<h3>All unsere Probentermine:</h3>
<div class="table-responsive">
<table class="table table-striped table-condensed">
<thead>
<tr>
<th>Termin</th>
<th>Uhrzeit</th>
<th>Aktualisieren</th>
</tr>
</thead>
<tbody>
<?php
foreach($proben as $item) {
?>
<!--div class="col-12-sm col-12-xs col-6-md col-6-lg">
Termin: <?php echo htmlentities($item["termin"]); ?>
</div>
<div class="col-12-sm col-12-xs col-6-md col-6-lg">
Uhrzeit: <?php echo htmlentities($item["uhrzeit"]); ?>
</div>
<hr-->
<tr>
<td><?php echo htmlentities($item["termin"]); ?></td>
<td><?php echo htmlentities($item["uhrzeit"]); ?></td>
<td><a href="update_proben.php?id=<?php echo htmlentities($item["id"]);?>" title="Den Eintrag ändern"><span class="glyphicon glyphicon-pencil"></span></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div> <!-- /container -->
<?php
require_once __DIR__ . '/footer.php';
?>
|