Script werkt niet
Ik heb een probleem, ik heb een scriptje geschreven voor het verwerken van gegevens in een database. Hij doet het alleen niet en ik kom er niet uit wat er mis mee is. Ik heb inmiddels alles geprobeerd maar ben immuun geworden voor de juiste uitkomst.
Ziet iemand misschien direct de oplossing. Alvast bedankt,
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<?php include("starter.php"); ?>
<!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>Culturele Commissie Putten || Voorstellingen verwijderen</title>
<meta name="description" content="De Culturele Commissie Putten organiseerd voorstellingen van Cabaret, Toneel, Zang en Theater in Stroud." />
<link href="css/default.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<?php
if(empty($_SESSION["gebruiker"]) && empty($_SESSION["wachtwoord"])){
?>
<meta http-equiv="refresh" content="0; URL=http://www.ccputten.nl/nieuw/" />
<?php
}else{
$jaar_vorig = date("Y")-1;
$jaar_huidig = date("Y");
$jaar_volgend = date("Y")+1;
$seizoen_vorig = (date("Y")-1).'/'.date("Y");
$seizoen_huidig = date("Y").'/'.(date("Y")+1);
$seizoen_volgend = (date("Y")+1).'/'.(date("Y")+2);
if($_SERVER['REQUEST_METHOD'] == 'POST'){
if(!empty($_POST["dagnaam"]) && !empty($_POST["dag"]) && !empty($_POST["maand"]) && !empty($_POST["jaar"]) && !empty($_POST["tijd"]) && !empty($_POST["artiest"]) && !empty($_POST["show"]) && !empty($_POST["samenvat"]) && !empty($_FILES["foto1"]['name']) && !empty($_POST["wachtwoord_controlle"])){
if($_POST["wachtwoord_controlle"] == $wachtwoord){
include("database.php");
$id = $_POST["id"];
$dagnaam = $_POST["dagnaam"];
$dag = $_POST["dag"];
$maand = $_POST["maand"];
$jaar = $_POST["jaar"];
$datum_code = $jaar.$maand.$dag;
if($maand == '01'){ $maand = 'januari'; }
if($maand == '02'){ $maand = 'februari'; }
if($maand == '03'){ $maand = 'maart'; }
if($maand == '04'){ $maand = 'april'; }
if($maand == '05'){ $maand = 'mei'; }
if($maand == '06'){ $maand = 'juni'; }
if($maand == '07'){ $maand = 'juli'; }
if($maand == '08'){ $maand = 'augustus'; }
if($maand == '09'){ $maand = 'september'; }
if($maand == '10'){ $maand = 'oktober'; }
if($maand == '11'){ $maand = 'november'; }
if($maand == '12'){ $maand = 'december'; }
$datum = "$dagnaam".' '."$dag".' '."$maand".' '."$jaar";
$tijd = $_POST["tijd"];
$artiest = $_POST["artiest"];
$show = $_POST["show"];
$seizoen = $_POST["seizoen"];
$samenvat = $_POST["samenvat"];
$reactie = $_POST["reactie"];
$foto1 = $_FILES["foto1"];
$foto2 = $_FILES["foto2"];
$foto3 = $_FILES["foto3"];
$query = "UPDATE agenda SET
datum = '".$datum."',
tijd = '".$tijd."',
datum_code = '".$datum_code."',
artiest = '".$artiest."',
show = '".$show."',
seizoen = '".$seizoen."',
samenvat = '".$samenvat."',
reactie = '".$reactie."'
WHERE id = '$id'";
$result = mysql_query($query, $db);
?>
<meta http-equiv="refresh" content="0; URL=http://www.ccputten.nl/nieuw/?pagina=adm_voorstellingen" />
<?php
}else{
?>
<h1>gegevens <span>niet bewerkt</span>.</h1>
<p style="color:#FF0000">Er is een fout ontstaan bij het bijwerken van de gegevens: Controlle wachtwoord incorrect.</p>
<?php
}
}else{
?>
<h1>gegevens <span>niet bewerkt</span>.</h1>
<p style="color:#FF0000">Er is een fout ontstaan bij het bijwerken van de gegevens: Niet alle verplichte velden zijn volledig ingevuld.</p>
<?php
}
}else{
$query1 = "SELECT * FROM agenda WHERE id = '$id'";
$result1 = mysql_query($query1, $db);
while($rij = mysql_fetch_array($result1)){
$id = $_POST["id"];
$datum = $rij["datum"];
$datum = explode(" ", $datum);
$dagnaam = $datum[0];
$dag = $datum[1];
$maand = $datum[2];
if($maand == 'januari'){ $maand = '01'; }
if($maand == 'februari'){ $maand = '02'; }
if($maand == 'maart'){ $maand = '03'; }
if($maand == 'april'){ $maand = '04'; }
if($maand == 'mei'){ $maand = '05'; }
if($maand == 'juni'){ $maand = '06'; }
if($maand == 'juli'){ $maand = '07'; }
if($maand == 'augustus'){ $maand = '08'; }
if($maand == 'september'){ $maand = '09'; }
if($maand == 'oktober'){ $maand = '10'; }
if($maand == 'november'){ $maand = '11'; }
if($maand == 'januari'){ $maand = '12'; }
$jaar = $datum[3];
$tijd = $rij["tijd"];
$artiest = $rij["artiest"];
$show = $rij["show"];
$seizoen = $rij["seizoen"];
$samenvat = $rij["samenvat"];
$reactie = $rij["reactie"];
}
?>
<form action="adm_voorstellingen_bew.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="id" value="<?php echo($_GET["id"]); ?>" />
<div class="veld_box">
<label for="dagnaam">Dag:*</label>
<select name="dagnaam">
<option <?php if($dagnaam == 'Maandag'){ echo('selected="selected"'); } ?>>Maandag</option>
<option <?php if($dagnaam == 'Dinsdag'){ echo('selected="selected"'); } ?>>Dinsdag</option>
<option <?php if($dagnaam == 'Woensdag'){ echo('selected="selected"'); } ?>>Woensdag</option>
<option <?php if($dagnaam == 'Donderdag'){ echo('selected="selected"'); } ?>>Donderdag</option>
<option <?php if($dagnaam == 'Vrijdag'){ echo('selected="selected"'); } ?>>Vrijdag</option>
<option <?php if($dagnaam == 'Zaterdag'){ echo('selected="selected"'); } ?>>Zaterdag</option>
<option <?php if($dagnaam == 'Zondag'){ echo('selected="selected"'); } ?>>Zondag</option>
</select>
</div>
<div class="veld_box">
<label for="dag">Dag:*</label>
<select name="dag">
<option <?php if($dag == '01'){ echo('selected="selected"'); } ?>>01</option>
<option <?php if($dag == '02'){ echo('selected="selected"'); } ?>>02</option>
<option <?php if($dag == '03'){ echo('selected="selected"'); } ?>>03</option>
<option <?php if($dag == '04'){ echo('selected="selected"'); } ?>>04</option>
<option <?php if($dag == '05'){ echo('selected="selected"'); } ?>>05</option>
<option <?php if($dag == '06'){ echo('selected="selected"'); } ?>>06</option>
<option <?php if($dag == '07'){ echo('selected="selected"'); } ?>>07</option>
<option <?php if($dag == '08'){ echo('selected="selected"'); } ?>>08</option>
<option <?php if($dag == '09'){ echo('selected="selected"'); } ?>>09</option>
<option <?php if($dag == '10'){ echo('selected="selected"'); } ?>>10</option>
<option <?php if($dag == '11'){ echo('selected="selected"'); } ?>>11</option>
<option <?php if($dag == '12'){ echo('selected="selected"'); } ?>>12</option>
<option <?php if($dag == '13'){ echo('selected="selected"'); } ?>>13</option>
<option <?php if($dag == '14'){ echo('selected="selected"'); } ?>>14</option>
<option <?php if($dag == '15'){ echo('selected="selected"'); } ?>>15</option>
<option <?php if($dag == '16'){ echo('selected="selected"'); } ?>>16</option>
<option <?php if($dag == '17'){ echo('selected="selected"'); } ?>>17</option>
<option <?php if($dag == '18'){ echo('selected="selected"'); } ?>>18</option>
<option <?php if($dag == '19'){ echo('selected="selected"'); } ?>>19</option>
<option <?php if($dag == '20'){ echo('selected="selected"'); } ?>>20</option>
<option <?php if($dag == '21'){ echo('selected="selected"'); } ?>>21</option>
<option <?php if($dag == '22'){ echo('selected="selected"'); } ?>>22</option>
<option <?php if($dag == '23'){ echo('selected="selected"'); } ?>>23</option>
<option <?php if($dag == '24'){ echo('selected="selected"'); } ?>>24</option>
<option <?php if($dag == '25'){ echo('selected="selected"'); } ?>>25</option>
<option <?php if($dag == '26'){ echo('selected="selected"'); } ?>>26</option>
<option <?php if($dag == '27'){ echo('selected="selected"'); } ?>>27</option>
<option <?php if($dag == '28'){ echo('selected="selected"'); } ?>>28</option>
<option <?php if($dag == '29'){ echo('selected="selected"'); } ?>>29</option>
<option <?php if($dag == '30'){ echo('selected="selected"'); } ?>>30</option>
<option <?php if($dag == '31'){ echo('selected="selected"'); } ?>>31</option>
</select>
</div>
<div class="veld_box">
<label for="maand">Maand:*</label>
<select name="maand">
<option <?php if($maand == '01'){ echo('selected="selected"'); } ?>>01</option>
<option <?php if($maand == '02'){ echo('selected="selected"'); } ?>>02</option>
<option <?php if($maand == '03'){ echo('selected="selected"'); } ?>>03</option>
<option <?php if($maand == '04'){ echo('selected="selected"'); } ?>>04</option>
<option <?php if($maand == '05'){ echo('selected="selected"'); } ?>>05</option>
<option <?php if($maand == '06'){ echo('selected="selected"'); } ?>>06</option>
<option <?php if($maand == '07'){ echo('selected="selected"'); } ?>>07</option>
<option <?php if($maand == '08'){ echo('selected="selected"'); } ?>>08</option>
<option <?php if($maand == '09'){ echo('selected="selected"'); } ?>>09</option>
<option <?php if($maand == '10'){ echo('selected="selected"'); } ?>>10</option>
<option <?php if($maand == '11'){ echo('selected="selected"'); } ?>>11</option>
<option <?php if($maand == '12'){ echo('selected="selected"'); } ?>>12</option>
</select>
</div>
<div class="veld_box">
<label for="jaar">Jaar:*</label>
<select name="jaar">
<option <?php if($jaar == $jaar_vorig){ echo('selected="selected"'); } ?>><?php echo($jaar_vorig); ?></option>
<option <?php if($jaar == $jaar_huidig){ echo('selected="selected"'); } ?>><?php echo($jaar_huidig); ?></option>
<option <?php if($jaar == $jaar_volgend){ echo('selected="selected"'); } ?>><?php echo($jaar_volgend); ?></option>
</select>
</div>
<div class="veld_box">
<label for="tijd">Tijd (uu:mm)*:</label>
<input type="text" name="tijd" value="<?php echo($tijd); ?>" />
</div>
<div class="veld_box">
<label for="artiest">Artiest:*</label>
<select name="artiest">
<?php
include("database.php");
$query2 = "SELECT * FROM artiestendb ORDER BY naam";
$result2 = mysql_query($query2, $db);
while($rij = mysql_fetch_array($result2)){
$id1 = $rij["id"];
$naam = $rij["naam"];
?>
<option <?php if($artiest == $id1){ echo('selected="selected"'); } ?> value="<?php echo($id1); ?>"><?php echo($naam); ?></option>
<?php
}
?>
</select>
</div>
<div class="veld_box">
<label for="show">Show*:</label>
<input type="text" name="show" value="<?php echo($show); ?>" />
</div>
<div class="veld_box">
<label for="seizoen">Seizoen:*</label>
<select name="seizoen">
<option <?php if($seizoen == $seizoen_vorig){ echo('selected="selected"'); } ?>><?php echo($seizoen_vorig); ?></option>
<option <?php if($seizoen == $seizoen_huidig){ echo('selected="selected"'); } ?>><?php echo($seizoen_huidig); ?></option>
<option <?php if($seizoen == $seizoen_volgend){ echo('selected="selected"'); } ?>><?php echo($seizoen_volgend); ?></option>
</select>
</div>
<div class="veld_box">
<label for="samenvat">Samenvatting show*:</label>
<textarea name="samenvat"><?php echo($samenvat); ?></textarea>
</div>
<div class="veld_box">
<label for="reactie">Reactie artiest:</label>
<textarea name="reactie"><?php echo($reactie); ?></textarea>
</div>
<div class="veld_box">
<label for="foto1">Foto 1*:</label>
<input type="file" name="foto1" />
</div>
<div class="veld_box">
<label for="foto2">Foto 2:</label>
<input type="file" name="foto2" />
</div>
<div class="veld_box">
<label for="foto3">Foto 3:</label>
<input type="file" name="foto3" />
</div>
<div class="veld_box">
<label>Controlle wachtwoord:*</label>
<input type="password" name="wachtwoord_controlle" value="" />
</div>
<br />
<div class="veld_box">
<input class="mid" type="submit" name="sub_bew" value="Bewerk" />
</div>
</form>
<?php
}
}
?>
</body>
</html>
<!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>Culturele Commissie Putten || Voorstellingen verwijderen</title>
<meta name="description" content="De Culturele Commissie Putten organiseerd voorstellingen van Cabaret, Toneel, Zang en Theater in Stroud." />
<link href="css/default.css" rel="stylesheet" type="text/css" media="screen" />
</head>
<body>
<?php
if(empty($_SESSION["gebruiker"]) && empty($_SESSION["wachtwoord"])){
?>
<meta http-equiv="refresh" content="0; URL=http://www.ccputten.nl/nieuw/" />
<?php
}else{
$jaar_vorig = date("Y")-1;
$jaar_huidig = date("Y");
$jaar_volgend = date("Y")+1;
$seizoen_vorig = (date("Y")-1).'/'.date("Y");
$seizoen_huidig = date("Y").'/'.(date("Y")+1);
$seizoen_volgend = (date("Y")+1).'/'.(date("Y")+2);
if($_SERVER['REQUEST_METHOD'] == 'POST'){
if(!empty($_POST["dagnaam"]) && !empty($_POST["dag"]) && !empty($_POST["maand"]) && !empty($_POST["jaar"]) && !empty($_POST["tijd"]) && !empty($_POST["artiest"]) && !empty($_POST["show"]) && !empty($_POST["samenvat"]) && !empty($_FILES["foto1"]['name']) && !empty($_POST["wachtwoord_controlle"])){
if($_POST["wachtwoord_controlle"] == $wachtwoord){
include("database.php");
$id = $_POST["id"];
$dagnaam = $_POST["dagnaam"];
$dag = $_POST["dag"];
$maand = $_POST["maand"];
$jaar = $_POST["jaar"];
$datum_code = $jaar.$maand.$dag;
if($maand == '01'){ $maand = 'januari'; }
if($maand == '02'){ $maand = 'februari'; }
if($maand == '03'){ $maand = 'maart'; }
if($maand == '04'){ $maand = 'april'; }
if($maand == '05'){ $maand = 'mei'; }
if($maand == '06'){ $maand = 'juni'; }
if($maand == '07'){ $maand = 'juli'; }
if($maand == '08'){ $maand = 'augustus'; }
if($maand == '09'){ $maand = 'september'; }
if($maand == '10'){ $maand = 'oktober'; }
if($maand == '11'){ $maand = 'november'; }
if($maand == '12'){ $maand = 'december'; }
$datum = "$dagnaam".' '."$dag".' '."$maand".' '."$jaar";
$tijd = $_POST["tijd"];
$artiest = $_POST["artiest"];
$show = $_POST["show"];
$seizoen = $_POST["seizoen"];
$samenvat = $_POST["samenvat"];
$reactie = $_POST["reactie"];
$foto1 = $_FILES["foto1"];
$foto2 = $_FILES["foto2"];
$foto3 = $_FILES["foto3"];
$query = "UPDATE agenda SET
datum = '".$datum."',
tijd = '".$tijd."',
datum_code = '".$datum_code."',
artiest = '".$artiest."',
show = '".$show."',
seizoen = '".$seizoen."',
samenvat = '".$samenvat."',
reactie = '".$reactie."'
WHERE id = '$id'";
$result = mysql_query($query, $db);
?>
<meta http-equiv="refresh" content="0; URL=http://www.ccputten.nl/nieuw/?pagina=adm_voorstellingen" />
<?php
}else{
?>
<h1>gegevens <span>niet bewerkt</span>.</h1>
<p style="color:#FF0000">Er is een fout ontstaan bij het bijwerken van de gegevens: Controlle wachtwoord incorrect.</p>
<?php
}
}else{
?>
<h1>gegevens <span>niet bewerkt</span>.</h1>
<p style="color:#FF0000">Er is een fout ontstaan bij het bijwerken van de gegevens: Niet alle verplichte velden zijn volledig ingevuld.</p>
<?php
}
}else{
$query1 = "SELECT * FROM agenda WHERE id = '$id'";
$result1 = mysql_query($query1, $db);
while($rij = mysql_fetch_array($result1)){
$id = $_POST["id"];
$datum = $rij["datum"];
$datum = explode(" ", $datum);
$dagnaam = $datum[0];
$dag = $datum[1];
$maand = $datum[2];
if($maand == 'januari'){ $maand = '01'; }
if($maand == 'februari'){ $maand = '02'; }
if($maand == 'maart'){ $maand = '03'; }
if($maand == 'april'){ $maand = '04'; }
if($maand == 'mei'){ $maand = '05'; }
if($maand == 'juni'){ $maand = '06'; }
if($maand == 'juli'){ $maand = '07'; }
if($maand == 'augustus'){ $maand = '08'; }
if($maand == 'september'){ $maand = '09'; }
if($maand == 'oktober'){ $maand = '10'; }
if($maand == 'november'){ $maand = '11'; }
if($maand == 'januari'){ $maand = '12'; }
$jaar = $datum[3];
$tijd = $rij["tijd"];
$artiest = $rij["artiest"];
$show = $rij["show"];
$seizoen = $rij["seizoen"];
$samenvat = $rij["samenvat"];
$reactie = $rij["reactie"];
}
?>
<form action="adm_voorstellingen_bew.php" method="post" enctype="multipart/form-data">
<input type="hidden" name="id" value="<?php echo($_GET["id"]); ?>" />
<div class="veld_box">
<label for="dagnaam">Dag:*</label>
<select name="dagnaam">
<option <?php if($dagnaam == 'Maandag'){ echo('selected="selected"'); } ?>>Maandag</option>
<option <?php if($dagnaam == 'Dinsdag'){ echo('selected="selected"'); } ?>>Dinsdag</option>
<option <?php if($dagnaam == 'Woensdag'){ echo('selected="selected"'); } ?>>Woensdag</option>
<option <?php if($dagnaam == 'Donderdag'){ echo('selected="selected"'); } ?>>Donderdag</option>
<option <?php if($dagnaam == 'Vrijdag'){ echo('selected="selected"'); } ?>>Vrijdag</option>
<option <?php if($dagnaam == 'Zaterdag'){ echo('selected="selected"'); } ?>>Zaterdag</option>
<option <?php if($dagnaam == 'Zondag'){ echo('selected="selected"'); } ?>>Zondag</option>
</select>
</div>
<div class="veld_box">
<label for="dag">Dag:*</label>
<select name="dag">
<option <?php if($dag == '01'){ echo('selected="selected"'); } ?>>01</option>
<option <?php if($dag == '02'){ echo('selected="selected"'); } ?>>02</option>
<option <?php if($dag == '03'){ echo('selected="selected"'); } ?>>03</option>
<option <?php if($dag == '04'){ echo('selected="selected"'); } ?>>04</option>
<option <?php if($dag == '05'){ echo('selected="selected"'); } ?>>05</option>
<option <?php if($dag == '06'){ echo('selected="selected"'); } ?>>06</option>
<option <?php if($dag == '07'){ echo('selected="selected"'); } ?>>07</option>
<option <?php if($dag == '08'){ echo('selected="selected"'); } ?>>08</option>
<option <?php if($dag == '09'){ echo('selected="selected"'); } ?>>09</option>
<option <?php if($dag == '10'){ echo('selected="selected"'); } ?>>10</option>
<option <?php if($dag == '11'){ echo('selected="selected"'); } ?>>11</option>
<option <?php if($dag == '12'){ echo('selected="selected"'); } ?>>12</option>
<option <?php if($dag == '13'){ echo('selected="selected"'); } ?>>13</option>
<option <?php if($dag == '14'){ echo('selected="selected"'); } ?>>14</option>
<option <?php if($dag == '15'){ echo('selected="selected"'); } ?>>15</option>
<option <?php if($dag == '16'){ echo('selected="selected"'); } ?>>16</option>
<option <?php if($dag == '17'){ echo('selected="selected"'); } ?>>17</option>
<option <?php if($dag == '18'){ echo('selected="selected"'); } ?>>18</option>
<option <?php if($dag == '19'){ echo('selected="selected"'); } ?>>19</option>
<option <?php if($dag == '20'){ echo('selected="selected"'); } ?>>20</option>
<option <?php if($dag == '21'){ echo('selected="selected"'); } ?>>21</option>
<option <?php if($dag == '22'){ echo('selected="selected"'); } ?>>22</option>
<option <?php if($dag == '23'){ echo('selected="selected"'); } ?>>23</option>
<option <?php if($dag == '24'){ echo('selected="selected"'); } ?>>24</option>
<option <?php if($dag == '25'){ echo('selected="selected"'); } ?>>25</option>
<option <?php if($dag == '26'){ echo('selected="selected"'); } ?>>26</option>
<option <?php if($dag == '27'){ echo('selected="selected"'); } ?>>27</option>
<option <?php if($dag == '28'){ echo('selected="selected"'); } ?>>28</option>
<option <?php if($dag == '29'){ echo('selected="selected"'); } ?>>29</option>
<option <?php if($dag == '30'){ echo('selected="selected"'); } ?>>30</option>
<option <?php if($dag == '31'){ echo('selected="selected"'); } ?>>31</option>
</select>
</div>
<div class="veld_box">
<label for="maand">Maand:*</label>
<select name="maand">
<option <?php if($maand == '01'){ echo('selected="selected"'); } ?>>01</option>
<option <?php if($maand == '02'){ echo('selected="selected"'); } ?>>02</option>
<option <?php if($maand == '03'){ echo('selected="selected"'); } ?>>03</option>
<option <?php if($maand == '04'){ echo('selected="selected"'); } ?>>04</option>
<option <?php if($maand == '05'){ echo('selected="selected"'); } ?>>05</option>
<option <?php if($maand == '06'){ echo('selected="selected"'); } ?>>06</option>
<option <?php if($maand == '07'){ echo('selected="selected"'); } ?>>07</option>
<option <?php if($maand == '08'){ echo('selected="selected"'); } ?>>08</option>
<option <?php if($maand == '09'){ echo('selected="selected"'); } ?>>09</option>
<option <?php if($maand == '10'){ echo('selected="selected"'); } ?>>10</option>
<option <?php if($maand == '11'){ echo('selected="selected"'); } ?>>11</option>
<option <?php if($maand == '12'){ echo('selected="selected"'); } ?>>12</option>
</select>
</div>
<div class="veld_box">
<label for="jaar">Jaar:*</label>
<select name="jaar">
<option <?php if($jaar == $jaar_vorig){ echo('selected="selected"'); } ?>><?php echo($jaar_vorig); ?></option>
<option <?php if($jaar == $jaar_huidig){ echo('selected="selected"'); } ?>><?php echo($jaar_huidig); ?></option>
<option <?php if($jaar == $jaar_volgend){ echo('selected="selected"'); } ?>><?php echo($jaar_volgend); ?></option>
</select>
</div>
<div class="veld_box">
<label for="tijd">Tijd (uu:mm)*:</label>
<input type="text" name="tijd" value="<?php echo($tijd); ?>" />
</div>
<div class="veld_box">
<label for="artiest">Artiest:*</label>
<select name="artiest">
<?php
include("database.php");
$query2 = "SELECT * FROM artiestendb ORDER BY naam";
$result2 = mysql_query($query2, $db);
while($rij = mysql_fetch_array($result2)){
$id1 = $rij["id"];
$naam = $rij["naam"];
?>
<option <?php if($artiest == $id1){ echo('selected="selected"'); } ?> value="<?php echo($id1); ?>"><?php echo($naam); ?></option>
<?php
}
?>
</select>
</div>
<div class="veld_box">
<label for="show">Show*:</label>
<input type="text" name="show" value="<?php echo($show); ?>" />
</div>
<div class="veld_box">
<label for="seizoen">Seizoen:*</label>
<select name="seizoen">
<option <?php if($seizoen == $seizoen_vorig){ echo('selected="selected"'); } ?>><?php echo($seizoen_vorig); ?></option>
<option <?php if($seizoen == $seizoen_huidig){ echo('selected="selected"'); } ?>><?php echo($seizoen_huidig); ?></option>
<option <?php if($seizoen == $seizoen_volgend){ echo('selected="selected"'); } ?>><?php echo($seizoen_volgend); ?></option>
</select>
</div>
<div class="veld_box">
<label for="samenvat">Samenvatting show*:</label>
<textarea name="samenvat"><?php echo($samenvat); ?></textarea>
</div>
<div class="veld_box">
<label for="reactie">Reactie artiest:</label>
<textarea name="reactie"><?php echo($reactie); ?></textarea>
</div>
<div class="veld_box">
<label for="foto1">Foto 1*:</label>
<input type="file" name="foto1" />
</div>
<div class="veld_box">
<label for="foto2">Foto 2:</label>
<input type="file" name="foto2" />
</div>
<div class="veld_box">
<label for="foto3">Foto 3:</label>
<input type="file" name="foto3" />
</div>
<div class="veld_box">
<label>Controlle wachtwoord:*</label>
<input type="password" name="wachtwoord_controlle" value="" />
</div>
<br />
<div class="veld_box">
<input class="mid" type="submit" name="sub_bew" value="Bewerk" />
</div>
</form>
<?php
}
}
?>
</body>
</html>
waar geeft hij de error?
lees even de regels