21 lines
437 B
PHP
21 lines
437 B
PHP
<h4> Tage </h4>
|
|
|
|
<?PHP
|
|
require_once ('../bootstrap.php');
|
|
|
|
include ("includes/funktion_schichtplan_aray.php");
|
|
|
|
function Printlink($Datum) {
|
|
GLOBAL $raum;
|
|
echo "\t<li><a href='./schichtplan.php?ausdatum=$Datum";
|
|
// ist ein raum gesetzt?
|
|
if (IsSet ($raum))
|
|
echo "&raum=$raum";
|
|
echo "'>$Datum</a></li>\n";
|
|
} //function Printlink(
|
|
|
|
if (isset ($VeranstaltungsTage))
|
|
foreach ($VeranstaltungsTage as $k => $v)
|
|
Printlink($v);
|
|
?>
|