Show sourcecode
The following files exists in this folder. Click to view.
webbsrvprg/exercises/form/egetformular/
egetfomrular3.php
egetformular5.php
egetfomrular3.php
116 lines UTF-8 Windows (CRLF)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
error_reporting(-1); // Report all type of errors
ini_set('display_errors', 1); // Display all errors
ini_set('output_buffering', 0); // Do not buffer outputs, write directly
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eget formulär</title>
</head>
<body>
<form method="post" action="">
<?php if(count($_POST) == 0) { ?>
<label for="name">Namn</label><br>
<input type="text" name="name"> <br>
<input type="submit" value="Skicka">
<?php } if(count($_POST) == 1) {?>
<div>
Vem är bästa musik artisten?
<div>
<input type="radio" name="fraga1" value="Carti" id="">
<label for="Carti">Jordan Carter</label>
</div>
<div>
<input type="radio" name="fraga1" value="ye" id="">
<label for="ye">ye</label>
</div>
<div>
<input type="radio" name="fraga1" value="Victor" id="">
<label for="Victor">Victor</label>
</div>
<div>
<input type="radio" name="fraga1" value="Arvid" id="">
<label for="Arvid">Arvid</label>
</div>
<input type="hidden" name="name" value="<?php echo $_POST["name"]; ?>">
<input type="submit" value="Skicka">
</div>
<?php } if(count($_POST) == 2) {?>
<div id="fraga2">
Hur gammal är jag?
<div>
<input type="radio" name="fraga2" value="18" id="">
<label for="18">18</label>
</div>
<div>
<input type="radio" name="fraga2" value="19" id="">
<label for="19"> 19</label>
</div>
<div>
<input type="radio" name="fraga2" value="20" id="">
<label for="20">20</label>
</div>
<div>
<input type="radio" name="fraga2" value="21" id="">
<label for="21">21</label>
</div>
<input type="hidden" name="name" value="<?php echo $_POST["name"]; ?>">
<input type="hidden" name="fraga1" value="<?php echo $_POST["fraga1"]; ?>">
<input type="submit" value="Skicka">
</div>
<?php } if(count($_POST) == 3) {?>
<div id="fraga3">
Vilket lag borde ha vunnit EM 2024?
<div>
<input type="radio" name="fraga3" value="England" id="">
<label for="England">England</label>
</div>
<div>
<input type="radio" name="fraga3" value="Frankrike" id="">
<label for="Frankrike">Frankrike (Nej)</label>
</div>
<div>
<input type="radio" name="fraga3" value="Neder" id="">
<label for="Neder">Nederländerna</label>
</div>
<div>
<input type="radio" name="fraga3" value="Spanien" id="">
<label for="Spanien">Spanien</label>
</div>
<input type="hidden" name="name" value="<?php echo $_POST["name"]; ?>">
<input type="hidden" name="fraga1" value="<?php echo $_POST["fraga1"]; ?>">
<input type="hidden" name="fraga2" value="<?php echo $_POST["fraga2"]; ?>">
<input type="submit" value="Skicka">
</div>
<?php }?>
<br>
</form>
<?php
if (count($_POST) == 4) {
$namn = $_POST["name"];
$svar1 = $_POST["fraga1"];
$svar2 = $_POST["fraga2"];
$svar3 = $_POST["fraga3"];
$antalRatt = 0;
if($svar1 == "Carti"){
$antalRatt += 1;
}
if($svar2 == "18"){
$antalRatt += 1;
}
if($svar3 == "England"){
$antalRatt += 1;
}
echo "Hej ". $namn. "! <br>";
echo "Du hade ". $antalRatt. " av 3 rätt";
}
?>
</body>
</html>