Contactgegevens wijzigen
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
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
<?php
[code]<?php
$user = "root";
$pass = "usbw";
$dbh = new PDO('mysql:host=127.0.0.1:3307; dbname=login', $user, $pass ) or DIE ("Kan geen verbinding maken met database.");
$sth = $dbh -> prepare("SELECT * FROM contactgegevens WHERE id = '2'");
$sth -> execute();
$contactgegevens = $sth -> fetchAll(PDO::FETCH_ASSOC);
if(isset($_POST['bevestig'])){
$naam = $_POST['naam'];
$telefoonnummer = $_POST['telefoonnummer'];
$telefoonnummer2 = $_POST['telefoonnummer2'];
$emailadres = $_POST['emailadres'];
$faxnummer = $_POST['faxnummer'];
$adres = $_POST['adres'];
$postcode = $_POST['postcode'];
$woonplaats = $_POST['woonplaats'];
$sql = $dbh -> prepare("UPDATE contactgegevens SET naam = :naam, telefoonnummer = :telefoonnummer, telefoonnummer2 = :telefoonnummer2, emailadres = :emailadres, faxnummer = :faxnummer, adres = :adres, postcode = :postcode, woonplaats = :woonplaats");
$sql -> execute();
$sql->bindValue(":telefoonnummer", $telefoonnummer, PDO::PARAM_INT);
$sql->bindValue(":naam", $naam, PDO::PARAM_STR);
$sql->bindValue(":telefoonnummer2", $telefoonnummer2, PDO::PARAM_INT);
$sql->bindValue(":emailadres", $emailadres, PDO::PARAM_STR);
$sql->bindValue(":faxnummer", $faxnummer, PDO::PARAM_STR);
$sql->bindValue(":adres", $adres, PDO::PARAM_STR);
$sql->bindValue(":postcode", $postcode, PDO::PARAM_STR);
$sql->bindValue(":woonplaats", $woonplaats, PDO::PARAM_STR);
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action="veranderencontactgegevenshap.php" method="post">
<table>
<tr>
<td>Naam:</td>
<td><input type="text" name="naam" value="<?php print $contactgegevens['naam'] ?>"></td>
</tr>
<tr>
<td>Telefoonnummer:</td>
<td><input type="text" name="telefoonnummer" value="<?php print $contactgegevens['telefoonnummer'] ?>"></td>
</tr>
<tr>
<td>Telefoonnummer 2:</td>
<td><input type="text" name="telefoonnummer2" value="<?php print $contactgegevens['telefoonnummer2'] ?>"></td>
</tr>
<tr>
<td>E-mailadres:</td>
<td><input type="text" name="emailadres" value="<?php print $contactgegevens['emailadres'] ?>"></td>
</tr>
<tr>
<td>Fax nummer</td>
<td><input type="text" name="faxnummer" value="<?php print $contactgegevens['faxnummer'] ?>"></td>
</tr>
<tr>
<td>Adres</td>
<td><input type="text" name="adres" value="<?php print $contactgegevens['adres'] ?>"></td>
</tr>
<tr>
<td>Postcode</td>
<td><input type="text" name="postcode" value="<?php print $contactgegevens['postcode'] ?>"></td>
</tr>
<tr>
<td>Woonplaats</td>
<td><input type="text" name="woonplaats" value="<?php print $contactgegevens['woonplaats'] ?>"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="bevestig" value="Verander"></td>
</tr>
</table>
</form>
</body>
</html>
?>
[code]<?php
$user = "root";
$pass = "usbw";
$dbh = new PDO('mysql:host=127.0.0.1:3307; dbname=login', $user, $pass ) or DIE ("Kan geen verbinding maken met database.");
$sth = $dbh -> prepare("SELECT * FROM contactgegevens WHERE id = '2'");
$sth -> execute();
$contactgegevens = $sth -> fetchAll(PDO::FETCH_ASSOC);
if(isset($_POST['bevestig'])){
$naam = $_POST['naam'];
$telefoonnummer = $_POST['telefoonnummer'];
$telefoonnummer2 = $_POST['telefoonnummer2'];
$emailadres = $_POST['emailadres'];
$faxnummer = $_POST['faxnummer'];
$adres = $_POST['adres'];
$postcode = $_POST['postcode'];
$woonplaats = $_POST['woonplaats'];
$sql = $dbh -> prepare("UPDATE contactgegevens SET naam = :naam, telefoonnummer = :telefoonnummer, telefoonnummer2 = :telefoonnummer2, emailadres = :emailadres, faxnummer = :faxnummer, adres = :adres, postcode = :postcode, woonplaats = :woonplaats");
$sql -> execute();
$sql->bindValue(":telefoonnummer", $telefoonnummer, PDO::PARAM_INT);
$sql->bindValue(":naam", $naam, PDO::PARAM_STR);
$sql->bindValue(":telefoonnummer2", $telefoonnummer2, PDO::PARAM_INT);
$sql->bindValue(":emailadres", $emailadres, PDO::PARAM_STR);
$sql->bindValue(":faxnummer", $faxnummer, PDO::PARAM_STR);
$sql->bindValue(":adres", $adres, PDO::PARAM_STR);
$sql->bindValue(":postcode", $postcode, PDO::PARAM_STR);
$sql->bindValue(":woonplaats", $woonplaats, PDO::PARAM_STR);
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action="veranderencontactgegevenshap.php" method="post">
<table>
<tr>
<td>Naam:</td>
<td><input type="text" name="naam" value="<?php print $contactgegevens['naam'] ?>"></td>
</tr>
<tr>
<td>Telefoonnummer:</td>
<td><input type="text" name="telefoonnummer" value="<?php print $contactgegevens['telefoonnummer'] ?>"></td>
</tr>
<tr>
<td>Telefoonnummer 2:</td>
<td><input type="text" name="telefoonnummer2" value="<?php print $contactgegevens['telefoonnummer2'] ?>"></td>
</tr>
<tr>
<td>E-mailadres:</td>
<td><input type="text" name="emailadres" value="<?php print $contactgegevens['emailadres'] ?>"></td>
</tr>
<tr>
<td>Fax nummer</td>
<td><input type="text" name="faxnummer" value="<?php print $contactgegevens['faxnummer'] ?>"></td>
</tr>
<tr>
<td>Adres</td>
<td><input type="text" name="adres" value="<?php print $contactgegevens['adres'] ?>"></td>
</tr>
<tr>
<td>Postcode</td>
<td><input type="text" name="postcode" value="<?php print $contactgegevens['postcode'] ?>"></td>
</tr>
<tr>
<td>Woonplaats</td>
<td><input type="text" name="woonplaats" value="<?php print $contactgegevens['woonplaats'] ?>"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="bevestig" value="Verander"></td>
</tr>
</table>
</form>
</body>
</html>
?>
Gewijzigd op 26/11/2012 19:49:30 door Johhny Westra
Prachtig gescript.
-edit-
Sorry mijn fout zal de vraag er even bij zetten.
Gewijzigd op 26/11/2012 19:47:37 door Johhny Westra
Gewijzigd op 26/11/2012 19:47:45 door - Ariën -
Gewijzigd
Even wat tips:
- Lijn 14 t/m 21 heb je niet nodig. Die $_POST variabelen kan je al in je script gebruiken.
- if(isset($_POST['bevestig'])){ Leer dit af, en gebruik if($_SERVER['REQUEST_METHOD']=="POST") {
In mijn tabel heb ik telkens bij de tekst boxen een value staan. Hierin wil ik de huidige gegevens weergeven. Wanneer ik de pagina laad komen er in deze boxjes dit te staan:
<br /><b>Notice</b>: Undefined index: naam in <b>C:\Users\Jesse\Desktop\USB webserver\USBWebserver\root\veranderencontactgegevenshap.php</b> on line <b>48</b><br />
Met uiteraard bij elke box een andere line nummer.
Toevoeging op 26/11/2012 20:41:03:
Undefined index probleem opgelost. Huidige script:
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
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
<?php
[code]<?php
$user = "root";
$pass = "usbw";
$dbh = new PDO('mysql:host=127.0.0.1:3307; dbname=login', $user, $pass ) or DIE ("Kan geen verbinding maken met database.");
$sth = ("SELECT * FROM contactgegevens WHERE id = '2'");
$results = $dbh->query($sth);
foreach($results as $row){
$name = $row['naam'];
$telnummer = $row['telefoonnummer'];
$telnummer2 = $row['telefoonnummer2'];
$email = $row['emailadres'];
$postc = $row['postcode'];
$woonpl = $row['woonplaats'];
$faxnr = $row['faxnummer'];
$adrs = $row['adres'];
}
if(isset($_POST['bevestig'])){
$naam = $_POST['naam'];
$telefoonnummer = $_POST['telefoonnummer'];
$telefoonnummer2 = $_POST['telefoonnummer2'];
$emailadres = $_POST['emailadres'];
$faxnummer = $_POST['faxnummer'];
$adres = $_POST['adres'];
$postcode = $_POST['postcode'];
$woonplaats = $_POST['woonplaats'];
$sql->bindValue(":telefoonnummer", $telefoonnummer, PDO::PARAM_INT);
$sql->bindValue(":naam", $naam, PDO::PARAM_STR);
$sql->bindValue(":telefoonnummer2", $telefoonnummer2, PDO::PARAM_INT);
$sql->bindValue(":emailadres", $emailadres, PDO::PARAM_STR);
$sql->bindValue(":faxnummer", $faxnummer, PDO::PARAM_STR);
$sql->bindValue(":adres", $adres, PDO::PARAM_STR);
$sql->bindValue(":postcode", $postcode, PDO::PARAM_STR);
$sql->bindValue(":woonplaats", $woonplaats, PDO::PARAM_STR);
$sql = $dbh -> prepare("UPDATE contactgegevens SET naam = :naam, telefoonnummer = :telefoonnummer, telefoonnummer2 = :telefoonnummer2, emailadres = :emailadres, faxnummer = :faxnummer, adres = :adres, postcode = :postcode, woonplaats = :woonplaats");
$sql -> execute();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action="veranderencontactgegevenshap.php" method="post">
<table>
<tr>
<td>Naam:</td>
<td><input type="text" name="naam" value="<?php print $name ?>"></td>
</tr>
<tr>
<td>Telefoonnummer:</td>
<td><input type="text" name="telefoonnummer" value="<?php print $telnummer ?>"></td>
</tr>
<tr>
<td>Telefoonnummer 2:</td>
<td><input type="text" name="telefoonnummer2" value="<?php print $telnummer2 ?>"></td>
</tr>
<tr>
<td>E-mailadres:</td>
<td><input type="text" name="emailadres" value="<?php print $email ?>"></td>
</tr>
<tr>
<td>Fax nummer</td>
<td><input type="text" name="faxnummer" value="<?php print $faxnr ?>"></td>
</tr>
<tr>
<td>Adres</td>
<td><input type="text" name="adres" value="<?php print $adrs ?>"></td>
</tr>
<tr>
<td>Postcode</td>
<td><input type="text" name="postcode" value="<?php print $postc ?>"></td>
</tr>
<tr>
<td>Woonplaats</td>
<td><input type="text" name="woonplaats" value="<?php print $woonpl ?>"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="bevestig" value="Verander"></td>
</tr>
</table>
</form>
</body>
</html>
?>
[code]<?php
$user = "root";
$pass = "usbw";
$dbh = new PDO('mysql:host=127.0.0.1:3307; dbname=login', $user, $pass ) or DIE ("Kan geen verbinding maken met database.");
$sth = ("SELECT * FROM contactgegevens WHERE id = '2'");
$results = $dbh->query($sth);
foreach($results as $row){
$name = $row['naam'];
$telnummer = $row['telefoonnummer'];
$telnummer2 = $row['telefoonnummer2'];
$email = $row['emailadres'];
$postc = $row['postcode'];
$woonpl = $row['woonplaats'];
$faxnr = $row['faxnummer'];
$adrs = $row['adres'];
}
if(isset($_POST['bevestig'])){
$naam = $_POST['naam'];
$telefoonnummer = $_POST['telefoonnummer'];
$telefoonnummer2 = $_POST['telefoonnummer2'];
$emailadres = $_POST['emailadres'];
$faxnummer = $_POST['faxnummer'];
$adres = $_POST['adres'];
$postcode = $_POST['postcode'];
$woonplaats = $_POST['woonplaats'];
$sql->bindValue(":telefoonnummer", $telefoonnummer, PDO::PARAM_INT);
$sql->bindValue(":naam", $naam, PDO::PARAM_STR);
$sql->bindValue(":telefoonnummer2", $telefoonnummer2, PDO::PARAM_INT);
$sql->bindValue(":emailadres", $emailadres, PDO::PARAM_STR);
$sql->bindValue(":faxnummer", $faxnummer, PDO::PARAM_STR);
$sql->bindValue(":adres", $adres, PDO::PARAM_STR);
$sql->bindValue(":postcode", $postcode, PDO::PARAM_STR);
$sql->bindValue(":woonplaats", $woonplaats, PDO::PARAM_STR);
$sql = $dbh -> prepare("UPDATE contactgegevens SET naam = :naam, telefoonnummer = :telefoonnummer, telefoonnummer2 = :telefoonnummer2, emailadres = :emailadres, faxnummer = :faxnummer, adres = :adres, postcode = :postcode, woonplaats = :woonplaats");
$sql -> execute();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action="veranderencontactgegevenshap.php" method="post">
<table>
<tr>
<td>Naam:</td>
<td><input type="text" name="naam" value="<?php print $name ?>"></td>
</tr>
<tr>
<td>Telefoonnummer:</td>
<td><input type="text" name="telefoonnummer" value="<?php print $telnummer ?>"></td>
</tr>
<tr>
<td>Telefoonnummer 2:</td>
<td><input type="text" name="telefoonnummer2" value="<?php print $telnummer2 ?>"></td>
</tr>
<tr>
<td>E-mailadres:</td>
<td><input type="text" name="emailadres" value="<?php print $email ?>"></td>
</tr>
<tr>
<td>Fax nummer</td>
<td><input type="text" name="faxnummer" value="<?php print $faxnr ?>"></td>
</tr>
<tr>
<td>Adres</td>
<td><input type="text" name="adres" value="<?php print $adrs ?>"></td>
</tr>
<tr>
<td>Postcode</td>
<td><input type="text" name="postcode" value="<?php print $postc ?>"></td>
</tr>
<tr>
<td>Woonplaats</td>
<td><input type="text" name="woonplaats" value="<?php print $woonpl ?>"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="bevestig" value="Verander"></td>
</tr>
</table>
</form>
</body>
</html>
?>
Waarom doe je niks met mijn tips?
Omdat mij nog niet duidelijk is waarom if($_SERVER['REQUEST_METHOD']=="POST") beter is. (zie mijn vorige reactie) En omdat ik de regels wel nodig heb om te binden. Of kan jij mij uitleggen waarom ik deze niet nodig ben?
En die regels met die $_POST heb je niet nodig, je kan die ook direct in je query gebruiken. Nu sta je gewoon variabelen te dupliceren, erg onnodig.
Toevoeging op 26/11/2012 21:09:25:
Ps. tot nu toe werkende script:
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
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
<?php
[code]<?php
$user = "root";
$pass = "usbw";
$dbh = new PDO('mysql:host=127.0.0.1:3307; dbname=login', $user, $pass ) or DIE ("Kan geen verbinding maken met database.");
$sth = ("SELECT * FROM contactgegevens WHERE id = '2'");
$results = $dbh->query($sth);
foreach($results as $row){
$name = $row['naam'];
$telnummer = $row['telefoonnummer'];
$telnummer2 = $row['telefoonnummer2'];
$email = $row['emailadres'];
$postc = $row['postcode'];
$woonpl = $row['woonplaats'];
$faxnr = $row['faxnummer'];
$adrs = $row['adres'];
}
if($_SERVER['REQUEST_METHOD']=="POST"){
$naam = $_POST['naam'];
$telefoonnummer = $_POST['telefoonnummer'];
$telefoonnummer2 = $_POST['telefoonnummer2'];
$emailadres = $_POST['emailadres'];
$faxnummer = $_POST['faxnummer'];
$adres = $_POST['adres'];
$postcode = $_POST['postcode'];
$woonplaats = $_POST['woonplaats'];
$sql = $dbh -> prepare("UPDATE contactgegevens SET naam = :naam, telefoonnummer = :telefoonnummer, telefoonnummer2 = :telefoonnummer2, emailadres = :emailadres, faxnummer = :faxnummer, adres = :adres, postcode = :postcode, woonplaats = :woonplaats");
$sql->bindValue(":telefoonnummer", $telefoonnummer, PDO::PARAM_INT);
$sql->bindValue(":naam", $naam, PDO::PARAM_STR);
$sql->bindValue(":telefoonnummer2", $telefoonnummer2, PDO::PARAM_INT);
$sql->bindValue(":emailadres", $emailadres, PDO::PARAM_STR);
$sql->bindValue(":faxnummer", $faxnummer, PDO::PARAM_STR);
$sql->bindValue(":adres", $adres, PDO::PARAM_STR);
$sql->bindValue(":postcode", $postcode, PDO::PARAM_STR);
$sql->bindValue(":woonplaats", $woonplaats, PDO::PARAM_STR);
$sql -> execute();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action="veranderencontactgegevenshap.php" method="post">
<table>
<tr>
<td>Naam:</td>
<td><input type="text" name="naam" value="<?php print $name ?>"></td>
</tr>
<tr>
<td>Telefoonnummer:</td>
<td><input type="text" name="telefoonnummer" value="<?php print $telnummer ?>"></td>
</tr>
<tr>
<td>Telefoonnummer 2:</td>
<td><input type="text" name="telefoonnummer2" value="<?php print $telnummer2 ?>"></td>
</tr>
<tr>
<td>E-mailadres:</td>
<td><input type="text" name="emailadres" value="<?php print $email ?>"></td>
</tr>
<tr>
<td>Fax nummer</td>
<td><input type="text" name="faxnummer" value="<?php print $faxnr ?>"></td>
</tr>
<tr>
<td>Adres</td>
<td><input type="text" name="adres" value="<?php print $adrs ?>"></td>
</tr>
<tr>
<td>Postcode</td>
<td><input type="text" name="postcode" value="<?php print $postc ?>"></td>
</tr>
<tr>
<td>Woonplaats</td>
<td><input type="text" name="woonplaats" value="<?php print $woonpl ?>"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="bevestig" value="Verander"></td>
</tr>
</table>
</form>
</body>
</html>
?>
[code]<?php
$user = "root";
$pass = "usbw";
$dbh = new PDO('mysql:host=127.0.0.1:3307; dbname=login', $user, $pass ) or DIE ("Kan geen verbinding maken met database.");
$sth = ("SELECT * FROM contactgegevens WHERE id = '2'");
$results = $dbh->query($sth);
foreach($results as $row){
$name = $row['naam'];
$telnummer = $row['telefoonnummer'];
$telnummer2 = $row['telefoonnummer2'];
$email = $row['emailadres'];
$postc = $row['postcode'];
$woonpl = $row['woonplaats'];
$faxnr = $row['faxnummer'];
$adrs = $row['adres'];
}
if($_SERVER['REQUEST_METHOD']=="POST"){
$naam = $_POST['naam'];
$telefoonnummer = $_POST['telefoonnummer'];
$telefoonnummer2 = $_POST['telefoonnummer2'];
$emailadres = $_POST['emailadres'];
$faxnummer = $_POST['faxnummer'];
$adres = $_POST['adres'];
$postcode = $_POST['postcode'];
$woonplaats = $_POST['woonplaats'];
$sql = $dbh -> prepare("UPDATE contactgegevens SET naam = :naam, telefoonnummer = :telefoonnummer, telefoonnummer2 = :telefoonnummer2, emailadres = :emailadres, faxnummer = :faxnummer, adres = :adres, postcode = :postcode, woonplaats = :woonplaats");
$sql->bindValue(":telefoonnummer", $telefoonnummer, PDO::PARAM_INT);
$sql->bindValue(":naam", $naam, PDO::PARAM_STR);
$sql->bindValue(":telefoonnummer2", $telefoonnummer2, PDO::PARAM_INT);
$sql->bindValue(":emailadres", $emailadres, PDO::PARAM_STR);
$sql->bindValue(":faxnummer", $faxnummer, PDO::PARAM_STR);
$sql->bindValue(":adres", $adres, PDO::PARAM_STR);
$sql->bindValue(":postcode", $postcode, PDO::PARAM_STR);
$sql->bindValue(":woonplaats", $woonplaats, PDO::PARAM_STR);
$sql -> execute();
}
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<form action="veranderencontactgegevenshap.php" method="post">
<table>
<tr>
<td>Naam:</td>
<td><input type="text" name="naam" value="<?php print $name ?>"></td>
</tr>
<tr>
<td>Telefoonnummer:</td>
<td><input type="text" name="telefoonnummer" value="<?php print $telnummer ?>"></td>
</tr>
<tr>
<td>Telefoonnummer 2:</td>
<td><input type="text" name="telefoonnummer2" value="<?php print $telnummer2 ?>"></td>
</tr>
<tr>
<td>E-mailadres:</td>
<td><input type="text" name="emailadres" value="<?php print $email ?>"></td>
</tr>
<tr>
<td>Fax nummer</td>
<td><input type="text" name="faxnummer" value="<?php print $faxnr ?>"></td>
</tr>
<tr>
<td>Adres</td>
<td><input type="text" name="adres" value="<?php print $adrs ?>"></td>
</tr>
<tr>
<td>Postcode</td>
<td><input type="text" name="postcode" value="<?php print $postc ?>"></td>
</tr>
<tr>
<td>Woonplaats</td>
<td><input type="text" name="woonplaats" value="<?php print $woonpl ?>"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="bevestig" value="Verander"></td>
</tr>
</table>
</form>
</body>
</html>
?>