blob: 6c1e3f180946e5402a2ed4835b1b6a2f8b1f11a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
require_once __DIR__ . '/termine.php';
$konzert = $konzert[0];
header("Content-Type: text/plain; Charset=UTF-8");
header("Content-Disposition: attachment; filename=\"Probentermine ".date("j.n.Y", time()).".txt\"");
echo "Gospelchor Adlershof - Probentermine (Stand ". date("j.n.Y", time()) .") \n\n";
foreach($proben as $item) {
echo $item["termin"] . ": " . $item["uhrzeit"] . "\n";
}
|