You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
318 B
PHTML
21 lines
318 B
PHTML
20 years ago
|
<h4> Tage </h4>
|
||
|
|
||
|
<?
|
||
|
|
||
19 years ago
|
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(
|
||
|
|
||
19 years ago
|
foreach( $VeranstaltungsTage as $k => $v)
|
||
19 years ago
|
{
|
||
19 years ago
|
Printlink( $v);
|
||
|
}
|
||
19 years ago
|
|
||
20 years ago
|
?>
|