blob: 2f90725f26040d9d1d289f8e6ad9bfde5e81d882 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
define("LOGIN_NOT_REQUIRED", true);
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";
}
|