code:
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
| <?php
$Wanted_Username = "******";
$Wanted_Password = "******";
if($username)
{
if(!$password)
{
die("Enter a password<br><a href=\"javascript:history.go(-1)\">Back</a>");
}
if($username != $Wanted_Username)
{
die("Incorrect Details<br><a href=\"javascript:history.go(-1)\">Back</a>");
}
if($password != $Wanted_Password)
{
die("Incorrect Details<br><a href=\"javascript:history.go(-1)\">Back</a>");
}
}
if(!$username)
{
?>
<body bgcolor="000000">
<form method="post">
<table ALIGN="RIGHT">
<tr ALIGN="RIGHT"><td><font color="FFFFFF">username</font></td><td><input type=text name=username size="20">></td></tr>
<tr ALIGN="RIGHT"><td><font color="FFFFFF">password</font></td><td><input type=password name=password size="20">></td></tr>
<tr ALIGN="RIGHT"><td colspan=2><input type=submit value="login"></td></tr>
</table>
</form>
<?php
die("");
}
?>
<?php
include("adressenboek.php");
?> |
Mooi een login stuk gemaakt en dan
code:
1
2
3
| <?php
include("adressenboek.php");
?> |
als je hebt ingelogt opent hij adressenboek.php maar hoe kun je dan zeggen dat die die opent in een ander frame (main frame)