forked from sbaghdadi-bit082/testeducon
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrechner.php
More file actions
43 lines (40 loc) · 866 Bytes
/
rechner.php
File metadata and controls
43 lines (40 loc) · 866 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
34
35
36
37
38
39
40
41
42
43
<html>
<head>
<title>rechner</title>
</head>
<body>
<form name="Rechner" action="ergebnis.php" method="post">
<b>Taschenrechner</b>
<table border="1">
<tr>
<td>Wert1:</td>
<td> <input type="text"
name="Zahl1"
size="10"
maxlength="15"
>
</td>
</tr>
<tr>
<td>Wert2:</td>
<td> <input type="text"
name="Zahl2"
size="10"
maxlength="15"
>
</td>
</tr>
<tr>
<td colspan="2">
<input type="radio" name="rechenart" value="plus">plus<br>
<input type="radio" name="rechenart" value="minus">minus<br>
<input type="radio" name="rechenart" value="geteilt">geteilt<br>
<input type="radio" name="rechenart" value="mal">mal<br>
<input type="radio" name="rechenart" value="prozent">prozent<br>
<input type="submit" name="button1" value="rechne">
</td>
</tr>
</table>
</form>
</body>
</html>