probleem met checkboxen in email
Ik ben bezig met een php contactscript met checkbox functie. Alle informatie krijg ik in mijn email (onderwerp, voorkeurstijd etc.), behalve de checkboxfunctie. Ik vink een optie aan, maar krijg deze niet in mijn email te zien. Wie oh wie kan mij helpen?
Hieronder de php code wat ik tot nu toe heb:
_________________________
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<?php
if(strtolower($_SERVER['REQUEST_METHOD']) == 'post')
{
if(empty($_POST['naam']) || empty($_POST['onderwerp']) || empty($_POST['bericht']) || empty($_POST['emailadres']))
{
echo 'U heeft uw naam, onderwerp, e-mailadres en/of uw bericht zijn niet correct ingevuld. Probeert u het nog eens.';
}
else
{
$bericht1 =
'Hallo,
Hierbij een nieuw bericht:
======================================================
Naam : '.$_POST['naam'].'
Emailadres : '.$_POST['emailadres'].'
Telefoonnummer : '.$_POST['telefoonnummer'].'
Voorkeursdatum : '.$_POST['datum1'].' '.$_POST['datum2'].'
Voorkeurstijd : '.$_POST['tijd1'].':'.$_POST['tijd2'].
Accessoieres : '.$_POST['accessoires1_4'].':'.$_POST['accessoires1_5'].':'.$_POST['accessoires1_6'].':'.$_POST['accessoires1_7'].'
Onderwerp : '.$_POST['onderwerp'].'
Bericht : '.$_POST['bericht'].'
======================================================
--- Dit is een automatisch gegenereerd bericht ---';
$onderwerp1 = 'Nieuw bericht';
$ontvanger1 = 'mijn@email.com';
$headers1 = 'From: '.$_POST['emailadres'].'' . "\n";
if(mail($ontvanger1, $onderwerp1, $bericht1, $headers1))
{
echo 'Uw bericht is correct verzonden. Wij nemen zo spoedig mogelijk contact met u op.';
}
}
}
else
{
?>
<form action="reserveren.php" method="post">
<table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="180" height="25">Naam : *</td>
<td width="220" height="25"><label>
<input type="text" name="naam" id="naam" />
<tr>
<td height="25">Emailadres : *</td>
<td height="25"><input type="text" name="emailadres" id="emailadres" /></td>
<tr>
<td height="25">Telefoonnummer :</td>
<td height="25"><input type="text" name="telefoonnummer" id="telefoonnummer" /></td>
</tr>
</label></td>
</tr>
<tr>
<td height="25">Voorkeursdatum :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="70" height="25">
<select name="datum1" id="datum1">
<option value="----">-----</option>
<option value="01">01</option>
<option value="02">02</option>
<option value="03">03</option>
<option value="04">04</option>
<option value="05">05</option>
<option value="06">06</option>
<option value="07">07</option>
<option value="08">08</option>
<option value="09">09</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select></td>
<td width="150" height="25"><label>
<select name="datum2" id="datum2">
<option value="----">------</option>
<option>Januari</option>
<option>Februari</option>
<option>Maart</option>
<option>April</option>
<option>Mei</option>
<option>Juni</option>
<option>Juli</option>
<option>Augustus</option>
<option>September</option>
<option>Oktober</option>
<option>November</option>
<option>December</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Voorkeurstijd :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="65" height="25"><label>
<select name="tijd1" id="tijd1">
<option value="--">--</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
</select>
</label></td>
<td width="155" height="25"><label>
<select name="tijd2" id="tijd2">
<option value="--">--</option>
<option>00</option>
<option>15</option>
<option>30</option>
<option>45</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td><label for="Accessoires">
<p><strong>Accessoires:</strong></p>
</label></td>
<td><table width="200">
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Ladingnet" id="accessoires1_4" />
Ladingnet</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Koppelingsslot" id="accessoires1_5" />
Koppelingsslot</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Wielkeggen" id="accessoires1_6" />
Wielkeggen</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Steunpoot" id="accessoires1_7" />
Steunpoot</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Uw bericht : *</td>
<td><textarea name="bericht" cols="40" rows="12">Uw bericht</textarea></td>
</tr>
<tr>
<td height="25"> </td>
<td height="25"><label>
<input type="submit" name="button" id="button" value="Verstuur bericht" />
</label></td>
</tr>
</table>
</form>
if(strtolower($_SERVER['REQUEST_METHOD']) == 'post')
{
if(empty($_POST['naam']) || empty($_POST['onderwerp']) || empty($_POST['bericht']) || empty($_POST['emailadres']))
{
echo 'U heeft uw naam, onderwerp, e-mailadres en/of uw bericht zijn niet correct ingevuld. Probeert u het nog eens.';
}
else
{
$bericht1 =
'Hallo,
Hierbij een nieuw bericht:
======================================================
Naam : '.$_POST['naam'].'
Emailadres : '.$_POST['emailadres'].'
Telefoonnummer : '.$_POST['telefoonnummer'].'
Voorkeursdatum : '.$_POST['datum1'].' '.$_POST['datum2'].'
Voorkeurstijd : '.$_POST['tijd1'].':'.$_POST['tijd2'].
Accessoieres : '.$_POST['accessoires1_4'].':'.$_POST['accessoires1_5'].':'.$_POST['accessoires1_6'].':'.$_POST['accessoires1_7'].'
Onderwerp : '.$_POST['onderwerp'].'
Bericht : '.$_POST['bericht'].'
======================================================
--- Dit is een automatisch gegenereerd bericht ---';
$onderwerp1 = 'Nieuw bericht';
$ontvanger1 = 'mijn@email.com';
$headers1 = 'From: '.$_POST['emailadres'].'' . "\n";
if(mail($ontvanger1, $onderwerp1, $bericht1, $headers1))
{
echo 'Uw bericht is correct verzonden. Wij nemen zo spoedig mogelijk contact met u op.';
}
}
}
else
{
?>
<form action="reserveren.php" method="post">
<table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="180" height="25">Naam : *</td>
<td width="220" height="25"><label>
<input type="text" name="naam" id="naam" />
<tr>
<td height="25">Emailadres : *</td>
<td height="25"><input type="text" name="emailadres" id="emailadres" /></td>
<tr>
<td height="25">Telefoonnummer :</td>
<td height="25"><input type="text" name="telefoonnummer" id="telefoonnummer" /></td>
</tr>
</label></td>
</tr>
<tr>
<td height="25">Voorkeursdatum :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="70" height="25">
<select name="datum1" id="datum1">
<option value="----">-----</option>
<option value="01">01</option>
<option value="02">02</option>
<option value="03">03</option>
<option value="04">04</option>
<option value="05">05</option>
<option value="06">06</option>
<option value="07">07</option>
<option value="08">08</option>
<option value="09">09</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select></td>
<td width="150" height="25"><label>
<select name="datum2" id="datum2">
<option value="----">------</option>
<option>Januari</option>
<option>Februari</option>
<option>Maart</option>
<option>April</option>
<option>Mei</option>
<option>Juni</option>
<option>Juli</option>
<option>Augustus</option>
<option>September</option>
<option>Oktober</option>
<option>November</option>
<option>December</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Voorkeurstijd :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="65" height="25"><label>
<select name="tijd1" id="tijd1">
<option value="--">--</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
</select>
</label></td>
<td width="155" height="25"><label>
<select name="tijd2" id="tijd2">
<option value="--">--</option>
<option>00</option>
<option>15</option>
<option>30</option>
<option>45</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td><label for="Accessoires">
<p><strong>Accessoires:</strong></p>
</label></td>
<td><table width="200">
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Ladingnet" id="accessoires1_4" />
Ladingnet</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Koppelingsslot" id="accessoires1_5" />
Koppelingsslot</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Wielkeggen" id="accessoires1_6" />
Wielkeggen</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires1_" value="Steunpoot" id="accessoires1_7" />
Steunpoot</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Uw bericht : *</td>
<td><textarea name="bericht" cols="40" rows="12">Uw bericht</textarea></td>
</tr>
<tr>
<td height="25"> </td>
<td height="25"><label>
<input type="submit" name="button" id="button" value="Verstuur bericht" />
</label></td>
</tr>
</table>
</form>
Gebruik code-tags voor het overzichtelijk weergeven van je code[/modedit]
Gewijzigd op 13/08/2010 13:00:05 door Joren de Wit
Wanneer ik dit voor elke checkbox doe, moet het werken?
Bijv:
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
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
<?php
if(isset($_POST["accessoires1_4"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
if(isset($_POST["accessoires1_5"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
if(isset($_POST["accessoires1_6"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
if(isset($_POST["accessoires1_7"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
?>
if(isset($_POST["accessoires1_4"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
if(isset($_POST["accessoires1_5"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
if(isset($_POST["accessoires1_6"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
if(isset($_POST["accessoires1_7"])){
// wel aangevinkt
}
else{
// niet aangevinkt
}
?>
onder // Wel aangevinkt
moet je je variablen vullen:
$accessoires1_4 = "Ladingnet";
enz
en de hele .$_POST['accessoires1_4'].
moet je vervangen door $accessoires1_4
enz
zou je dit tegen een geringe vergoeding willen aanpassen voor mij? Voor jou is het waarschijnlijk een kleinigheidje.
@Leon: php is voor mij hobby en ik probeer hier wat te leren en ook weer wat door te geven maar ik doe het niet tegen vergoeding. Je kan wel een verzoek plaatsen op de website hier waarin je dit aanvraagt.
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?php
if(strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
if(empty($_POST['naam']) || empty($_POST['onderwerp']) || empty($_POST['bericht']) || empty($_POST['emailadres'])) {
echo 'U heeft uw naam, onderwerp, e-mailadres en/of uw bericht zijn niet correct ingevuld. Probeert u het nog eens.';
}
else
{
$bericht1 = 'Hallo,
Hierbij een nieuw bericht:
======================================================
Naam : '.$_POST['naam'].'
Emailadres : '.$_POST['emailadres'].'
Telefoonnummer : '.$_POST['telefoonnummer'].'
Voorkeursdatum : '.$_POST['datum1'].' '.$_POST['datum2'].'
Voorkeurstijd : '.$_POST['tijd1'].':'.$_POST['tijd2'].'
Accessoieres : '.implode(':', $_POST['accessoires']).'
Onderwerp : '.$_POST['onderwerp'].'
Bericht : '.$_POST['bericht'].'
======================================================
--- Dit is een automatisch gegenereerd bericht ---';
$onderwerp1 = 'Nieuw bericht';
$ontvanger1 = '[email protected]';
$headers1 = 'From: '.$_POST['emailadres'].'' . "\n";
// if(mail($ontvanger1, $onderwerp1, $bericht1, $headers1)) {
// echo 'Uw bericht is correct verzonden. Wij nemen zo spoedig mogelijk contact met u op.';
// }
echo nl2br($bericht1);
}
}
else
{
?>
<form action="index.php" method="post">
<table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="180" height="25">Naam : *</td>
<td width="220" height="25"><label>
<input type="text" name="naam" id="naam" />
</label></td></tr>
<tr>
<td height="25">Emailadres : *</td>
<td height="25"><input type="text" name="emailadres" id="emailadres" /></td>
</tr>
<tr>
<td height="25">Telefoonnummer :</td>
<td height="25"><input type="text" name="telefoonnummer" id="telefoonnummer" /></td>
</tr>
<tr>
<td height="25">Onderwerp : *</td>
<td height="25"><input type="text" name="onderwerp" id="onderwerp" /></td>
</tr>
<tr>
<td height="25">Voorkeursdatum :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="70" height="25">
<select name="datum1" id="datum1">
<option value="----">-----</option>
<option value="01">01</option>
<option value="02">02</option>
<option value="03">03</option>
<option value="04">04</option>
<option value="05">05</option>
<option value="06">06</option>
<option value="07">07</option>
<option value="08">08</option>
<option value="09">09</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select></td>
<td width="150" height="25"><label>
<select name="datum2" id="datum2">
<option value="----">------</option>
<option>Januari</option>
<option>Februari</option>
<option>Maart</option>
<option>April</option>
<option>Mei</option>
<option>Juni</option>
<option>Juli</option>
<option>Augustus</option>
<option>September</option>
<option>Oktober</option>
<option>November</option>
<option>December</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Voorkeurstijd :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="65" height="25"><label>
<select name="tijd1" id="tijd1">
<option value="--">--</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
</select>
</label></td>
<td width="155" height="25"><label>
<select name="tijd2" id="tijd2">
<option value="--">--</option>
<option>00</option>
<option>15</option>
<option>30</option>
<option>45</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td><label for="Accessoires">
<p><strong>Accessoires:</strong></p>
</label></td>
<td><table width="200">
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Ladingnet" id="accessoires1_4" />
Ladingnet</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Koppelingsslot" id="accessoires1_5" />
Koppelingsslot</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Wielkeggen" id="accessoires1_6" />
Wielkeggen</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Steunpoot" id="accessoires1_7" />
Steunpoot</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Uw bericht : *</td>
<td><textarea name="bericht" cols="40" rows="12">Uw bericht</textarea></td>
</tr>
<tr>
<td height="25"> </td>
<td height="25"><label>
<input type="submit" name="button" id="button" value="Verstuur bericht" />
</label></td>
</tr>
</table>
</form>
<?php
}
?>
if(strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
if(empty($_POST['naam']) || empty($_POST['onderwerp']) || empty($_POST['bericht']) || empty($_POST['emailadres'])) {
echo 'U heeft uw naam, onderwerp, e-mailadres en/of uw bericht zijn niet correct ingevuld. Probeert u het nog eens.';
}
else
{
$bericht1 = 'Hallo,
Hierbij een nieuw bericht:
======================================================
Naam : '.$_POST['naam'].'
Emailadres : '.$_POST['emailadres'].'
Telefoonnummer : '.$_POST['telefoonnummer'].'
Voorkeursdatum : '.$_POST['datum1'].' '.$_POST['datum2'].'
Voorkeurstijd : '.$_POST['tijd1'].':'.$_POST['tijd2'].'
Accessoieres : '.implode(':', $_POST['accessoires']).'
Onderwerp : '.$_POST['onderwerp'].'
Bericht : '.$_POST['bericht'].'
======================================================
--- Dit is een automatisch gegenereerd bericht ---';
$onderwerp1 = 'Nieuw bericht';
$ontvanger1 = '[email protected]';
$headers1 = 'From: '.$_POST['emailadres'].'' . "\n";
// if(mail($ontvanger1, $onderwerp1, $bericht1, $headers1)) {
// echo 'Uw bericht is correct verzonden. Wij nemen zo spoedig mogelijk contact met u op.';
// }
echo nl2br($bericht1);
}
}
else
{
?>
<form action="index.php" method="post">
<table width="400" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="180" height="25">Naam : *</td>
<td width="220" height="25"><label>
<input type="text" name="naam" id="naam" />
</label></td></tr>
<tr>
<td height="25">Emailadres : *</td>
<td height="25"><input type="text" name="emailadres" id="emailadres" /></td>
</tr>
<tr>
<td height="25">Telefoonnummer :</td>
<td height="25"><input type="text" name="telefoonnummer" id="telefoonnummer" /></td>
</tr>
<tr>
<td height="25">Onderwerp : *</td>
<td height="25"><input type="text" name="onderwerp" id="onderwerp" /></td>
</tr>
<tr>
<td height="25">Voorkeursdatum :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="70" height="25">
<select name="datum1" id="datum1">
<option value="----">-----</option>
<option value="01">01</option>
<option value="02">02</option>
<option value="03">03</option>
<option value="04">04</option>
<option value="05">05</option>
<option value="06">06</option>
<option value="07">07</option>
<option value="08">08</option>
<option value="09">09</option>
<option value="10">10</option>
<option value="11">11</option>
<option value="12">12</option>
<option value="13">13</option>
<option value="14">14</option>
<option value="15">15</option>
<option value="16">16</option>
<option value="17">17</option>
<option value="18">18</option>
<option value="19">19</option>
<option value="20">20</option>
<option value="21">21</option>
<option value="22">22</option>
<option value="23">23</option>
<option value="24">24</option>
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="28">28</option>
<option value="29">29</option>
<option value="30">30</option>
<option value="31">31</option>
</select></td>
<td width="150" height="25"><label>
<select name="datum2" id="datum2">
<option value="----">------</option>
<option>Januari</option>
<option>Februari</option>
<option>Maart</option>
<option>April</option>
<option>Mei</option>
<option>Juni</option>
<option>Juli</option>
<option>Augustus</option>
<option>September</option>
<option>Oktober</option>
<option>November</option>
<option>December</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Voorkeurstijd :</td>
<td height="25"><table width="220" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="65" height="25"><label>
<select name="tijd1" id="tijd1">
<option value="--">--</option>
<option>09</option>
<option>10</option>
<option>11</option>
<option>12</option>
<option>13</option>
<option>14</option>
<option>15</option>
<option>16</option>
<option>17</option>
<option>18</option>
<option>19</option>
<option>20</option>
<option>21</option>
</select>
</label></td>
<td width="155" height="25"><label>
<select name="tijd2" id="tijd2">
<option value="--">--</option>
<option>00</option>
<option>15</option>
<option>30</option>
<option>45</option>
</select>
</label></td>
</tr>
</table></td>
</tr>
<tr>
<td><label for="Accessoires">
<p><strong>Accessoires:</strong></p>
</label></td>
<td><table width="200">
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Ladingnet" id="accessoires1_4" />
Ladingnet</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Koppelingsslot" id="accessoires1_5" />
Koppelingsslot</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Wielkeggen" id="accessoires1_6" />
Wielkeggen</label></td>
</tr>
<tr>
<td><label>
<input type="checkbox" name="accessoires[]" value="Steunpoot" id="accessoires1_7" />
Steunpoot</label></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25">Uw bericht : *</td>
<td><textarea name="bericht" cols="40" rows="12">Uw bericht</textarea></td>
</tr>
<tr>
<td height="25"> </td>
<td height="25"><label>
<input type="submit" name="button" id="button" value="Verstuur bericht" />
</label></td>
</tr>
</table>
</form>
<?php
}
?>
Het kan allemaal veel beter, maar dit geeft je een eerste opzet...
ps. Merk op dat ik de mail() tijdelijk uitgezet heb en gewoon even een echo gebruik om te kijken of het bericht is zoals ik het wel hebben :-)
Gewijzigd op 13/08/2010 14:45:29 door Joren de Wit
@Blanche, compliment. Ik vind mijn eigen code daar nog niet goed genoeg voor om dat even voor iemand te doen. Opmerking aan Leon: pas het woordje Accessoieres nog even aan, moet zijn Accessoires en dit staat vanaf begin al fout.
@John D: je hebt gelijk ik zal het aanpassen. Had dat inderdaad nog niet zo snel gezien. Toen ik het gisteravond maakte was het nogal laat.
Gewijzigd op 13/08/2010 16:55:14 door Leon den H
"Empty($var) is een functie die TRUE teruggeeft als:
•De variabele die wordt getest niet gedefinieerd is
•de variabele gelijk is aan 0, FALSE, een lege string of een lege array
Omdat de naam empty doet vermoeden dat het controleert of een variabele leeg is wordt deze functie te pas en te onpas gebruikt om te controleren of een veld in een formulier is ingevuld. Dat kan niet zomaar omdat nul een geldige waarde kan zijn voor numerieke velden zoals een aantal producten in een winkelwagentje.
Empty() heeft in doorsnee PHP code geen enkel nut.
Kijk liever naar functies als strlen(), ctype_digit() (en soortgelijken) en regular-expressions om een waarde te controleren op wat je daadwerkelijk wilt weten."
http://wiki.phpfreakz.nl/Empty