fhiiqm/form/ma_fkt_form.inc.php
changeset 7 d2fe4fb36670
child 9 f3ee378f9631
equal deleted inserted replaced
6:12d2e7b9c20d 7:d2fe4fb36670
       
     1 <?php
       
     2 
       
     3 /**
       
     4  * @author Bettina Schwarzer, Fritz-Haber-Institut
       
     5  * @copyright 09/2011
       
     6  */
       
     7 
       
     8 
       
     9 
       
    10 ?>
       
    11 <div align="center">
       
    12 <table>
       
    13 <tr><td class="bigger">Die Auswahl von Mitarbeiter bzw. Funktion geschieht durch<br />Eingeben von mindesten 2 bzw. 1 Zeichen in das entsprechende Feld.
       
    14 </td></tr>
       
    15 <tr><td class="bigger"><div class="red">Achtung! </div>Umlaute wie '&auml;', '&uuml;', '&ouml;', '&szlig;' werden nicht gefunden, bitte benachbarte Zeichen eingeben.</td></tr>
       
    16 <tr><td class="bigger">&nbsp;</td></tr>
       
    17 </table>
       
    18 </div>
       
    19 <form action="<?php $_SERVER['PHP_SELF'] ?>" method="post" enctype="application/x-www-form-urlencoded" name="fmafkt"> 
       
    20 <div align="center">
       
    21     <table border="0" cellspacing="3" cellpadding="3">
       
    22         <div class="ui-widget">
       
    23         <tr><td>Mitarbeiter *</td>
       
    24             <td valign="top"><input class="long20" type="text" name="fkt[persknr]" id="persknr" value="<?php echo $fkt['persknr']; ?>"/>
       
    25             </td>
       
    26         </tr>
       
    27         <tr><td>Funktion *</td>
       
    28             <td valign="top"><input class="long20" type="text" name="fkt[func]" id="func" value="<?php echo $fkt['func']; ?>"/>
       
    29             </td>
       
    30         </tr>
       
    31         <tr><td>Geltungsbereich</td>
       
    32             <td valign="top"><input class="long20" type="text" name="fkt[ber]" id="ber" maxlength="50" value="<?php echo $fkt['ber']; ?>"/>
       
    33             </td>
       
    34         </tr>
       
    35         <tr><td>Beginn</td>
       
    36             <td valign="top"><input class="long10" type="text" name="fkt[von]" id="von" value="<?php echo $fkt['von']; ?>"/>
       
    37             </td>
       
    38         </tr>
       
    39         <tr><td>Ende</td>
       
    40             <td valign="top"><input class="long10" type="text" name="fkt[bis]" id="bis" value="<?php echo $fkt['bis']; ?>"/>
       
    41             </td>
       
    42         </tr>
       
    43         <tr><td>Bemerkung</td>
       
    44             <td valign="top"><textarea name="fkt[bem]" id="bem" rows="3" cols="33"><?php echo $fkt['bem']; ?></textarea>
       
    45             </td>
       
    46         </tr>
       
    47        	<tr><td>&nbsp;</td>
       
    48         	<td><input  class="button" type="submit" name="eintragen" value="  eintragen  " />
       
    49         <!--			<input type="submit" name="abbrechen" value="abbrechen">&nbsp;&nbsp;&nbsp; -->
       
    50       		</td>
       
    51         	</tr>
       
    52          </div>
       
    53     </table>
       
    54     <input type="hidden" name="fkt[pid]" id="pid" value="<?php echo $fkt['pid']; ?>"/>
       
    55     <input type="hidden" name="fkt[fid]" id="fid" value="<?php echo $fkt['fid']; ?>"/>
       
    56 </form>
       
    57 </div>