22 lines
402 B
PHP
Executable File
22 lines
402 B
PHP
Executable File
<h4> Tage </h4>
|
|
|
|
<?PHP
|
|
include ("./inc/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);
|
|
|
|
|
|
?>
|