-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrekenmachine.php
More file actions
32 lines (28 loc) · 830 Bytes
/
Copy pathrekenmachine.php
File metadata and controls
32 lines (28 loc) · 830 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
<form name="rekenmachine" action="" method="post">
<input type="text" name="getal1" value="">
<br>
<select name="type">
<option value ="plus">+</option>
<option value ="min">-</option>
<option value ="delen">:</option>
<option value ="maal">x</option>
</select>
<br>
<input type="text" name="getal2" value="">
<br>
<input type="submit" name="reken_uit" value="Reken uit">
</form>
<?php
$getal1 = $_POST["getal1"];
$getal2 = $_POST["getal2"];
if ($_POST["type"] == "plus") {
$uitkomst = $getal1 + $getal2;
} else if ($_POST["type"] == "min") {
$uitkomst = $getal1 - $getal2;
} else if ($_POST["type"] == "delen") {
$uitkomst = $getal1 / $getal2;
} else if ($_POST["type"] == "maal") {
$uitkomst = $getal1 * $getal2;
}
print ($uitkomst);
?>