Meowsalot: Einträge speichern

Beitrag lesen

Hallo MudGuard,

aber Du hast zwei geschachtelte Schleifen (User und Tage), verwendest für die Namen der input-Elemente aber nur die Tage - damit sind sie natürlich nicht eindeutig.

dieses habe ich jetzt geändert

<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="text" 
		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=""> bis

	<input type="text" 
		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=""> Uhr
</div>

Dadurch habe ich jetzt doch eindeutige Felder?

Bis bald!
Meowsalot (Bernd)