captchaControleren.php
Gesponsorde koppelingen
PHP script bestanden
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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
<?php
// Functie voor het controleren of de ingevoerde captcha correct is.
function captcha_check(){
return ($_POST['captcha'] == $_SESSION['captcha']) ? true : false ;
}
// Set ' $resultaat ' variabele voor het opslaan van het resultaat.
$resultaat = '';
// Controleren of het formulier is verzonden.
if( isset ( $_POST['submit'] ) ){ // Ik weet, slechte manier.
// Controleren of de ingevoerde captcha correct is ingevoerd.
if(captcha_check()){
$resultaat = 'Hoera! De ingevoerde captcha is correct.';
}
else{
$resultaat = 'Helaas! De ingevoerde captcha is incorrect.';
}
}
?>
// Functie voor het controleren of de ingevoerde captcha correct is.
function captcha_check(){
return ($_POST['captcha'] == $_SESSION['captcha']) ? true : false ;
}
// Set ' $resultaat ' variabele voor het opslaan van het resultaat.
$resultaat = '';
// Controleren of het formulier is verzonden.
if( isset ( $_POST['submit'] ) ){ // Ik weet, slechte manier.
// Controleren of de ingevoerde captcha correct is ingevoerd.
if(captcha_check()){
$resultaat = 'Hoera! De ingevoerde captcha is correct.';
}
else{
$resultaat = 'Helaas! De ingevoerde captcha is incorrect.';
}
}
?>