-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditform.php
More file actions
33 lines (33 loc) · 914 Bytes
/
editform.php
File metadata and controls
33 lines (33 loc) · 914 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php
require('top_file.php');
?>
<h3>Bestehenden Eintrag ändern</h3>
Mit diesen Angaben wird der zu ändernde Eintrag ausgewählt.
<p>
<form action="edit.php" method=post>
<table border=0>
<tr>
<td>Vorname</td>
<td ><input name="vorname" size=30 maxlength=30 value="<?php
print "$_REQUEST[vorname]";
?>"></td>
</tr><tr>
<td>Name</td>
<td><input name="name" size=30 maxlength=30 value="<?
print $_REQUEST[name];
?>"></td>
</tr><tr>
<td>Geboren (1974-03-22)</td>
<td><input name="geboren" size=30 maxlength=60 value="<?
print $_REQUEST[geboren];
?>"></td>
</tr><tr><td colspan=2> </td></tr><tr>
<td colspan=2><input type=submit name="action" value="Steckbrief ändern"> oder <input type=submit name="action" value="Klassenzuordnung ändern"></td>
</tr>
</table>
</form>
</div>
</div>
<div id="background_footer"></div>
</body>
</html>