-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRechner 2.php
38 lines (31 loc) · 1.01 KB
/
Rechner 2.php
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
<html>
<head>
<title>rechner2 addition</title>
<style>
h3 {color:blue; font-family: comic sans ms; text-align: center;}
</style>
<?php
$s1 = $_GET["s1"];
$s2 = $_GET["s2"];
$s3 = $_GET["s3"];
$r = $s1+$s2+$s3;
?>
</head>
<body>
<h3>Die Summe aus <?php echo $s1 ?> und <?php echo $s2 ?> und <?php echo $s3 ?> ist <?php echo $r ?></h3>
<form method="get" action="./Website rechner.html" style="text-align:center;">
<br>
<input style="background-color:lightpurple" type="submit" value="zurück zur Website">
</form>
<form method="get" action="./Rechner addition.html" style="text-align:center;">
<br>
<input style="background-color:lightpurple" type="submit" value="zurück">
</form>
<?php
$t = Summand("s2");
if ($t < "100000") {
echo "Geht nicht";
}
?>
</body>
</html>