formulier-met-handige-extras

Gesponsorde koppelingen

PHP script bestanden

  1. formulier-met-handige-extras

« Lees de omschrijving en reacties

Het is de volgende code:

Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
<html>
<head>
<title>test</title>
<style>
<!--
body{
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-style:normal;
}
table{
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-style:normal;
}
.noborder{
border:none;
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
font-style:normal;
}
select{
font-family:sans-serif, Helvetica;
}
.smalltxt{
border:none;
color:#000000;
font-family:Arial, Helvetica, sans-serif;
font-size:10px;
font-style:normal;
}
-->
</style>
<script language="JavaScript" type="text/javascript">
//////////////////////////////////////////////////////////////////
/*    This code is created by: Koen Scheres, aKa BlackLightning    */
/*                    DO NOT REMOVE THIS TAG!                        */
//////////////////////////////////////////////////////////////////

function leeg(){
  document.myForm.mail1.value='';
  document.myForm.mail2.value='';
  document.myForm.gebruiker1.value='';
  document.myForm.gebruiker2.value='';
  document.myForm.pass1.value='';
  document.myForm.pass2.value='';
  document.myForm.correct.value='';
  document.myForm.correct2.value='';
  document.myForm.correct3.value='';
  document.myForm.correct4.value='';
}

//----------Check if password entrys are the same----------//
function controleerpw(){ // Start the function
  var pass1=document.myForm.pass1.value; // Get the values from the form
  var pass2=document.myForm.pass2.value; // Get the values from the form
    if(pass1==''){ // See if they are set
      document.plaatje.src=('none.png'); // No, so show an empty picture
      document.myForm.correct.value=(''); // And make 'control-text' empty
    }
    else if(pass2==''){ // See if they are set
      document.plaatje.src=('none.png'); // No, so show an empty picture
      document.myForm.correct.value=(''); // And make 'control-text' empty
    }
    else{ // If they're both filled in:
      if(pass1==pass2){ // See if they are the same, if they're both set
        document.plaatje.src=('right.png'); // Yes, so show the 'correct' picture
        document.myForm.correct.value=('De passwords zijn hetzelfde!'); // Print a certain line in the 'control-text' area
        pass1=''; // This is for securety reasons, only during the controleerpw() function these variables have values. With a certain code you can get these values on your screen, this is why it's like this.
        pass2=''; // Same as above
      }
      else{ // They are both filed in, but they're not the same
      document.plaatje.src=('wrong.png'); // No, so show the 'wrong' picture
      document.myForm.correct.value=('De passwords zijn verschillend :( !'); // Print a certain line in the 'control-text' area
      pass1=''; // This is for securety reasons, only during the controleerpw() function these variables have values. With a certain code you can get these values on your screen, this is why it's like this.
      pass2=''; // Same as above
      }
    }
}

//----------Check if the e-mail entrys are the same----------//
function controleeremail(){ // Start the function
    var mail1=document.myForm.mail1.value; // Get the values from the form
    var mail2=document.myForm.mail2.value; // Get the values from the form
    if(mail1==''){ // See if they are set
        document.plaatje2.src=('none.png'); // No, so show an empty picture
        document.myForm.correct2.value=(''); // And make 'control-text' empty
    }
    else if(mail2==''){ // See if they are set
        document.plaatje2.src=('none.png'); // No, so show an empty picture
        document.myForm.correct2.value=(''); // And make 'control-text' empty
    }
    else{ // If they're both filled in:
        if(mail1==mail2){ // See if they are the same, if they're both set
            document.plaatje2.src=('right.png'); // Yes, so show the 'correct' picture
            document.myForm.correct2.value=('De e-mails zijn hetzelfde!'); // Print a certain line in the 'control-text' area
        }
        else{ // They are both filed in, but they're not the same
            document.plaatje2.src=('wrong.png'); // No, so show the 'wrong' picture
            document.myForm.correct2.value=('De e-mails zijn verschillend :( !'); // Print a certain line in the 'control-text' area
        }
    }
}

function validatemail(){
    var y=document.myForm.mail1.value
    var x=y.split('@');
    var z=x[1]
    if(z.length>3){
        var zx=z.split('.');
    var zy=zx[1];
    var zz=zx[2];
    if(zx[0]<1){
        document.plaatje4.src=('wrong.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is niet geldig :( !');
    }
    else{
    switch(zy){
      case 'ac':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'as':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ad':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ag':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'am':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ar':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'au':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'bb':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'be':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'bi':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'bm':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'br':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'bz':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'io':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ca':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'cc':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'cd':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'cg':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'cl':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'cn':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'cu':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'cx':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'hr':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'dk':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'do':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ec':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'fr':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'de':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ge':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'gi':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'gr':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'hk':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'hu':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'id':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'in':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'is':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ie':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'im':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'it':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'jo':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'jp':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'kr':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'li':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'lt':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'lu':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'lv':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'mt':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'mx':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'fm':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'nl':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'nu':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'pk':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'pa':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ru':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');      
      break;
      case 'sg':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'sk':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'es':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'sh':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'se':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'ch':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'com':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'net':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'org':
        document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is geldig!');
      break;
      case 'co':
        switch(zx[2]){
        case 'uk':
          document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
          document.myForm.correct4.value=('De e-mail is geldig!');
        break;
        case 'cr':
          document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
          document.myForm.correct4.value=('De e-mail is geldig!');
        break;
        case 'nz':
          document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
          document.myForm.correct4.value=('De e-mail is geldig!');
        break;
        case 'th':
          document.plaatje4.src=('right.png'); // No, so show the 'wrong' picture
          document.myForm.correct4.value=('De e-mail is geldig!');
        break;
        default:
        document.plaatje4.src=('wrong.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is niet geldig :( !');
        break;
        }
      break;
      default:
        document.plaatje4.src=('wrong.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is niet geldig :( !');
      break;
      }
    }
    }
    else{
        document.plaatje4.src=('wrong.png'); // No, so show the 'wrong' picture
        document.myForm.correct4.value=('De e-mail is niet geldig :( !');
    }
}

//----------Check if the user entrys are the same----------//
function controleergebruiker(){ // Start the function
  var gebr1=document.myForm.gebruiker1.value; // Get the values from the form
  var gebr2=document.myForm.gebruiker2.value; // Get the values from the form
    if(gebr1==''){ // See if they are set
      document.plaatje3.src=('none.png'); // No, so show an empty picture
      document.myForm.correct3.value=(''); // And make 'control-text' empty
    }
    else if(gebr2==''){ // See if they are set
      document.plaatje3.src=('none.png'); // No, so show an empty picture
      document.myForm.correct3.value=(''); // And make 'control-text' empty
    }
    else{ // If they're both filled in:
      if(gebr1==gebr2){ // See if they are the same, if they're both set
        document.plaatje3.src=('right.png'); // Yes, so show the 'correct' picture
        document.myForm.correct3.value=('De gebruikersnamen zijn hetzelfde!'); // Print a certain line in the 'control-text' area
      }
      else{ // They are both filed in, but they're not the same
      document.plaatje3.src=('wrong.png'); // No, so show the 'wrong' picture
      document.myForm.correct3.value=('De gebruikersnamen zijn verschillend :( !'); // Print a certain line in the 'control-text' area
      }
    }
}
function controleer_bovenstaande_waarde(){
  if(document.myForm.correct4.value==''){
  document.myForm.correct4.value=('Geen valide e-mail! typ aub de goede in!');
  document.plaatje4.src=('wrong.png');
  }
}
</script>
</head>
<body onLoad="leeg()">
<form name="myForm">
<table width="90%" align="left">
  <tr>
    <td width="10%">Gebruikersnaam:</td>
    <td width="10%"><input type="text" name="gebruiker1" onBlur="controleergebruiker()"></td>
    <td width="80%">&nbsp;</td>
  </tr>
  <tr>
    <td width="10%">Herhaal Gebruikersnaam:</td>
    <td width="10%"><input type="text" name="gebruiker2" onBlur="controleergebruiker()"></td>
    <td align="left" width="80%"><img src="none.png" name="plaatje3"><input type="text" class="noborder" size="50" name="correct3" onFocus="document.myForm.mail1.focus()">
    </td>
  </tr>
  <tr>
    <td width="10%">E-mail:</td>
    <td width="10%"><input type="text" name="mail1" onBlur="validatemail()"><input type="hidden" name="emailcheck"></td>
    <td align="left" width="80%"><img src="none.png" name="plaatje4"><input type="text" class="noborder" size="50" name="correct4" onFocus="document.myForm.mail2.focus()">
    </td>
  </tr>
  <tr>
    <td width="10%">Herhaal e-mail:</td>
    <td width="10%"><input type="text" name="mail2" onBlur="controleeremail()" onFocus="controleer_bovenstaande_waarde()"></td>
    <td align="left" width="80%"><img src="none.png" name="plaatje2"><input type="text" class="noborder" size="50" name="correct2" onFocus="document.myForm.pass1.focus()"></td>
  </tr>
    <td width="10%">Wachtwoord:</td>
    <td width="10%"><input type="password" name="pass1" onBlur="controleerpw()" onFocus="controleer_bovenstaande_waarde()"></td>
    <td width="80%">&nbsp;</td>
  </tr>
  <tr>
    <td width="10%">Herhaal wachtwoord:</td>
    <td width="10%"><input type="password" name="pass2" onBlur="controleerpw()"></td>
    <td align="left" width="80%"><img src="none.png" name="plaatje"><input type="text" class="noborder" size="50" name="correct" onFocus="document.myForm.gebruiker1.focus()"></td>
  </tr>
</table>
</form>
</body>
</html>


Ik ben nog bezig aan een anti-spam functie (in php),

Koen

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.