index.html

Gesponsorde koppelingen

PHP script bestanden

  1. index.html
  2. captcha.php
  3. controleren.php

« Lees de omschrijving en reacties

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
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Captcha</title>
<script type="text/javascript">
function reload_captcha(id) {
   var obj = document.getElementById(id);
   var src = obj.src;
   var pos = src.indexOf('?');
   if (pos >= 0) {
      src = src.substr(0, pos);
   }
   var date = new Date();
   obj.src = src + '?v=' + date.getTime();
   return false;
}
</script>
<style type="text/css">
img {
    border: none;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
#captcha {
    background: #000;
    padding: 10px;
    width: 400px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.form {
    padding: 5px;
    margin: 0px;
    background: #CCC;
    -moz-border-radius: 10px;
    border-radius: 10px;
}
</style>
</head>

<body>
<form action="controleren.php" method="post">
<div id="captcha">
<img src="captcha.php" id="Captcha_img"/>
<p class="form">
Type the numbers and letters from the image in the field below.<br />
<input type="text" name="captcha" />
<a href="#" OnClick="javascript:reload_captcha('Captcha_img');"><img src="images/reload.png" width="20" height="20"/></a>
</p>
</div>
<input type="submit" value="Controleer" />
</form>
</body>
</html>

 
 

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.