Ejemplo n.º 1
0
$raum_id = $mietobjekt_id;
$tische = getTische($raum_id);
$reservierungen[] = array();
while ($d = $tische->FetchNextObject()) {
    $id = $d->TISCHNUMMER;
    if (isset($_POST["tischgebucht_" . $id]) && $_POST["tischgebucht_" . $id] == "true") {
        $reservierungen[] = $id;
    }
}
//ende pruefe ob tisch gebucht wurde
//datum fuer datepicker setzen:
$startdatumDP = $tag . "/" . $monat . "/" . $jahr;
$bilder_id = getBildOfRaum($raum_id);
$bildbreite = getBildBreite($bilder_id);
$bildhoehe = getBildHoehe($bilder_id);
$maxAnzahlPersonen = getMaximaleBelegungOfRaum($raum_id);
$minAnzahlPersonen = getMinimaleBelegungOfRaum($raum_id);
//header einfuegen:
?>
<!DOCTYPE html>
<html>
<head>
<title>Bookline Booking System - Bookline Buchungssystem - UTILO</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
	<?php 
include_once $root . "/templates/stylesheets.php";
?>
</style>
<link rel="stylesheet" type="text/css" href="<?php 
echo $root;
Ejemplo n.º 2
0
        $monat = getTodayMonth();
    }
}
if (isset($_POST["datumAnsicht"])) {
    $tag = getTagFromDatePicker($_POST["datumAnsicht"]);
} else {
    if (isset($_POST["tag"])) {
        $tag = $_POST["tag"];
    } else {
        $tag = getTodayDay();
    }
}
$startdatumDP = $tag . "/" . $monat . "/" . $jahr;
//anzahl der minimalen und maximalen personenanzahl f�r diesen raum:
$anzahlMinPersonen = getMinimaleBelegungOfRaum($raum_id);
$anzahlMaxPersonen = getMaximaleBelegungOfRaum($raum_id);
?>
<script language="JavaScript" type="text/javascript" src="./leftJS.js">
</script>
<table cellpadding="3">
  <tr>
	<td valign="top">
	<!-- linke seite - navigation: -->	
		<!-- begin auswahl datum und uhrzeit -->
	  	<form action="<?php 
echo $root;
?>
/belegungsplan/anfrage/index.php" method="post" name="resAendern">
		  <input type="hidden" name="raum_id" value="<?php 
echo $raum_id;
?>