Verwerken van de formuliergegevens
In dit voorbeeld gebeurt dat op secure_page.php
De strategie van dit inlogscript is zodanig, dat je alleen maar een php bestand hoeft te includen op elke pagina die je wilt beveiligen. 'secure_page.php' ziet er zo uit:
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
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
<?php
require 'authenticatie.php';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Secure Page 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
@import 'login.css';
</style>
</head>
<body>
<h1>Secure page 1</h1>
<p>
Als u deze pagina ziet, bent u succesvol ingelogd.
</p>
<p>
<a href="secure_page2.php" title="Ga naar pagina 2">Ga naar pagina 2</a>
</p>
</body>
</html>
require 'authenticatie.php';
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Secure Page 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
@import 'login.css';
</style>
</head>
<body>
<h1>Secure page 1</h1>
<p>
Als u deze pagina ziet, bent u succesvol ingelogd.
</p>
<p>
<a href="secure_page2.php" title="Ga naar pagina 2">Ga naar pagina 2</a>
</p>
</body>
</html>
Zoals je ziet een doodnormale php pagina. Bovenin wordt 'authenticatie.php' geinclude (of eigenlijk gerequired). De eigenlijke code van de pagina's die je wilt beveilingen maakt niet uit; zolang je maar 'authenticatie.php' aan de bovenkant include. Laten we gaan kijken naar authenticatie.php, want daar gebeurt het eigenlijke werk!
« vorige pagina | volgende pagina »