Hallo,
folgenden Code habe ich
<h3 class="einsatz">Projektleiter</h3>
<?php foreach($ProjektleiterModule as $array){ ?>
<div ><?php echo htmlspecialchars($array['mpv_vorname'] . " " . $array['mpv_name']) ?></div>
<?php
$date = date_create($mg_von);
$m = 1;
for($i=0; $i < $tage+1; $i++) {
if ($i == 0) {
date_add($date, date_interval_create_from_date_string('0 day'));
} else {
date_add($date, date_interval_create_from_date_string('1 day'));
}
$stmt = $mysqli->prepare("SELECT ms2f_id, ms2f_mid, ms2f_pid, ms2f_tag, ms2f_datum, ms2f_von, ms2f_bis
FROM einsatzzeiten
WHERE ms2f_mid=? AND ms2f_tag=? AND ms2f_pid=?");
$stmt->bind_param("sss", $veranstaltung, $m, $array['mpv_code']);
$stmt->execute();
$stmt->bind_result($ms2f_id, $ms2f_mid, $ms2f_pid, $ms2f_tag, $ms2f_datum, $ms2f_von, $ms2f_bis);
$stmt->fetch();
$stmt->close();
?>
<div class="textfeld">
<label for="ms2f_datum[<?php echo $i+1 ?>]">Datum</label>
<input type="text"
name="ms2f_datum[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
id="ms2f_datum[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
value="<?php echo $i+1 ?>. Tag - <?php echo date_format($date, 'd.m.Y'); ?>"
readonly >
<input type="hidden"
name="ms2f_tag[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
id="ms2f_tag[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
value="<?php echo $i+1; ?>">
<input type="hidden"
name="ms2f_pid[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
id="ms2f_pid[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
value="<?php echo $array['mpv_code']; ?>">
</div>
<div class="textfeld abstand_2">
<label for="ms2f_von[<?php echo $i+1 ?>]">Einsatzzeit</label>
<input type="time"
name="ms2f_von[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
id="ms2f_von[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
value="<?php echo htmlspecialchars($ms2f_von); ?>"> bis
<input type="time"
name="ms2f_bis[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
id="ms2f_bis[<?php echo $array['mpv_code']; ?>][<?php echo $i+1 ?>]"
value="<?php echo htmlspecialchars($ms2f_bis); ?>"> Uhr
</div>
<?php $m++; } ?>
<?php } ?>
Jetzt habe ich eine Variable $tage in dieser Steht z.B. eine 3. In der Ausgabe benötige ich immer eine Reihe mehr, also
for($i=0; $i < $tage+1; $i++) {}
Jetzt möchte ich gerne in meinen Reihen bevor die Zusatzreihe kommt eine Zwischenüberschrift einfügen. wie könnte ich dieses machen?
Bis bald!
Meowsalot (Bernd)