toevoegen.php
Gesponsorde koppelingen
PHP script bestanden
Code (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
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
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
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Afvalcalculator - Gewicht toevoegen</title>
<style type="text/css">
<!--
.toevoegn {
font-family: Calibri;
}
-->
</style>
</head>
<body>
<form action="berekenbmi.php" method="post" name="form1" class="toevoegn" id="form1">
<p>Nieuw gewicht toevoegen</p>
<p>Vul als eerste je gewicht en lengte in op het eerste tabel<br />
Klik dan op
Bereken BMI, vul altijd een punt in ipv een komma.<br />
Ook geen eenheden erbij zetten. (Kilogram, Meters)
<br />
Je word daarna doorgestuurd weer terug naar deze pagina<br />
<br />
Je BMI is dan berekent en je gegevens komen in het tweede<br />
tabel te staan. Standaard is de datum ook ingevuld en klik op<br />
verzenden.
</p>
<p>Als je doorgestuurd werd dan heb je nog geen gewicht aangemaakt<br />
Om dit systeem te kunnen gebruiken moet er minimaal 1 gewicht aanwezig zijn.
</p>
<p><a href="index.php">Overzichtsscherm</a></p>
BMI Berekenen<br />
<table width="403" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="174">Gewicht</td>
<td width="229"><input name="gewicht1" type="text" id="textfield5" value="Vul hier je gewicht in" />
bijv 0.0</td>
</tr>
<tr>
<td>Lengte</td>
<td><input name="lengte1" type="text" id="textfield6" value="Vul hier je lengte in" />
bijv 1.74</td>
</tr>
<tr>
<td>BMI </td>
<td><label>
<input name="button" type="submit" class="toevoegn" id="button" value="Bereken BMI" />
</label></td>
</tr>
</table></form><form action="toevoegen_verwerken.php" method="post" name="form2" class="toevoegn" id="form1">
<br />
Gegevens<br />
<?php
if(isset($_SESSION["lengte"])){
$lengte = $_SESSION["lengte"];
}
if(isset($_SESSION["gewicht"])){
$gewicht = $_SESSION["gewicht"];
}
if(isset($_SESSION["bmi"])){
$bmi = $_SESSION["bmi"];
}
?>
<table width="484" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="175">Gewicht</td>
<td width="309"><label>
<input name="gewicht" type="text" id="textfield" value="<?php if(isset($gewicht)){
echo $gewicht; }?>" />
</label></td>
</tr>
<tr>
<td>Lengte</td>
<td><input name="lengte" type="text" id="textfield2" value="<?php if(isset($gewicht)){ echo $lengte; } ?>" /></td>
</tr>
<tr>
<td>BMI</td>
<td><input name="bmi" type="text" id="textfield3" value="<?php if(isset($gewicht)){ echo $bmi; } ?>" /></td>
</tr>
<tr>
<td>Datum</td>
<td><input type="text" name="datum" id="textfield4" value="<?php echo date("y/m/d") ?>"/>
JJJ-MM-DD</td>
</tr>
<tr>
<td height="24"> </td>
<td><label>
<input name="button2" type="submit" class="toevoegn" id="button2" value="Gewicht toevoegen" />
</label></td>
</tr>
</table>
</form>
<?php
session_destroy();
?>
</body>
</html>
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Afvalcalculator - Gewicht toevoegen</title>
<style type="text/css">
<!--
.toevoegn {
font-family: Calibri;
}
-->
</style>
</head>
<body>
<form action="berekenbmi.php" method="post" name="form1" class="toevoegn" id="form1">
<p>Nieuw gewicht toevoegen</p>
<p>Vul als eerste je gewicht en lengte in op het eerste tabel<br />
Klik dan op
Bereken BMI, vul altijd een punt in ipv een komma.<br />
Ook geen eenheden erbij zetten. (Kilogram, Meters)
<br />
Je word daarna doorgestuurd weer terug naar deze pagina<br />
<br />
Je BMI is dan berekent en je gegevens komen in het tweede<br />
tabel te staan. Standaard is de datum ook ingevuld en klik op<br />
verzenden.
</p>
<p>Als je doorgestuurd werd dan heb je nog geen gewicht aangemaakt<br />
Om dit systeem te kunnen gebruiken moet er minimaal 1 gewicht aanwezig zijn.
</p>
<p><a href="index.php">Overzichtsscherm</a></p>
BMI Berekenen<br />
<table width="403" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="174">Gewicht</td>
<td width="229"><input name="gewicht1" type="text" id="textfield5" value="Vul hier je gewicht in" />
bijv 0.0</td>
</tr>
<tr>
<td>Lengte</td>
<td><input name="lengte1" type="text" id="textfield6" value="Vul hier je lengte in" />
bijv 1.74</td>
</tr>
<tr>
<td>BMI </td>
<td><label>
<input name="button" type="submit" class="toevoegn" id="button" value="Bereken BMI" />
</label></td>
</tr>
</table></form><form action="toevoegen_verwerken.php" method="post" name="form2" class="toevoegn" id="form1">
<br />
Gegevens<br />
<?php
if(isset($_SESSION["lengte"])){
$lengte = $_SESSION["lengte"];
}
if(isset($_SESSION["gewicht"])){
$gewicht = $_SESSION["gewicht"];
}
if(isset($_SESSION["bmi"])){
$bmi = $_SESSION["bmi"];
}
?>
<table width="484" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="175">Gewicht</td>
<td width="309"><label>
<input name="gewicht" type="text" id="textfield" value="<?php if(isset($gewicht)){
echo $gewicht; }?>" />
</label></td>
</tr>
<tr>
<td>Lengte</td>
<td><input name="lengte" type="text" id="textfield2" value="<?php if(isset($gewicht)){ echo $lengte; } ?>" /></td>
</tr>
<tr>
<td>BMI</td>
<td><input name="bmi" type="text" id="textfield3" value="<?php if(isset($gewicht)){ echo $bmi; } ?>" /></td>
</tr>
<tr>
<td>Datum</td>
<td><input type="text" name="datum" id="textfield4" value="<?php echo date("y/m/d") ?>"/>
JJJ-MM-DD</td>
</tr>
<tr>
<td height="24"> </td>
<td><label>
<input name="button2" type="submit" class="toevoegn" id="button2" value="Gewicht toevoegen" />
</label></td>
</tr>
</table>
</form>
<?php
session_destroy();
?>
</body>
</html>