wie ziet de fout??

Overzicht Reageren

Sponsored by: Vacatures door Monsterboard

Kevin

kevin

30/05/2007 15:04:00
Quote Anchor link
wie kan de fout vinden in dit script
die moet doorverwijzen naar indexx.php maar als ik op login druk komt er een leeg scherm dus ik denk dat er fout zit in login.php maar ik zie de fout niet ik ben nou weer niet zo presies met php drm



login.php
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
<?php  
session_start();

include("config.php");  

$controle=1;  

$verstuurd=0;  

if($_SERVER['REQUEST_METHOD']=='POST'){  

    $verstuurd=1;  

    if(empty($_POST['nickname'])){  

        $controle=0;  

        $wachtwoord = md5($_POST['wachtwoord']);  

    }
  

    if(empty($_POST['wachtwoord'])){  

        $controle=0;  

        $nickname = $_POST['nickname'];  

    }
else {  

        $nickname = $_POST['nickname'];  

        $wachtwoord = $_POST['wachtwoord'];  

    }
  

    if($controle==1){  

        $wachtwoord_org = $_POST['wachtwoord'];  

        $wachtwoord = md5($_POST['wachtwoord']);  

        $bestaande_nickname = mysql_query("SELECT nickname FROM $tabel_naam WHERE nickname='".addslashes($nickname)."'");    

        if(mysql_num_rows($bestaande_nickname)==0){  

            $controle=0;  

            $nick_fout="Onbekende nickname";  

        }


        if($controle==1){

            $goede_ww = mysql_query("SELECT nickname FROM $tabel_naam WHERE nickname='$nickname' AND wachtwoord='$wachtwoord'");  

               if(mysql_num_rows($goede_ww)==0) {  

                $controle=0;  

                $ww_fout="Fout wachtwoord";  

            }  

        }


        if($controle==1){

            $resultaat_id = mysql_query("SELECT id FROM $tabel_naam WHERE nickname='".addslashes($nickname)."'");

            $id = mysql_result($resultaat_id, 0);  

        }

    }  

}
  

if($verstuurd==0||$controle==0) {  

    ?>
  

    <html>

    <head>

    <title>Log-in</title>

    </head>

    <body>

    <form name="login" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">

    <table>

        <?php  

        if($verstuurd==1){  

            if(empty($_POST['nickname'])){  

                echo "<tr><td colspan=\"2\">".$fout_tags_open."Vul een nickname in".$fout_tags_sluit."</td></tr>";  

            }
  

            if(isset($nick_fout)){  

                echo "<tr><td colspan=\"2\">".$fout_tags_open.$nick_fout.$fout_tags_sluit."</td></tr>";  

            }  

        }
  

        ?>
  

        <tr>

            <td>Nickname:</td>

            <td><input type="text" name="nickname" <?php if($verstuurd==1&&!empty($_POST['nickname'])){echo "value=\"".stripslashes(htmlentities($nickname))."\"";} ?>></td>

        </tr>

        <?php  

        if(isset($ww_fout)){  

            echo "<tr><td colspan=\"2\">".$fout_tags_open.$ww_fout.$fout_tags_sluit."</td></tr>";  

        }
  

        if($verstuurd==1 && empty($_POST['wachtwoord'])){  

            echo "<tr><td colspan=\"2\">".$fout_tags_open."Vul een wachtwoord in".$fout_tags_sluit."</td></tr>";  

        }
  

        ?>
  

        <tr>

            <td>Wachtwoord:</td>

            <td><input type="password" name="wachtwoord" <?php if($verstuurd==1&&!empty($_POST['wachtwoord'])){echo "value=\"".stripslashes(htmlentities($wachtwoord_org))."\"";} ?>></td>

        </tr>

        <tr>

            <td colspan="2"><input type="checkbox" name="onthoud" checked>Onthoud me</td>

        </tr>

        <tr>

            <td colspan="2"><center><input type="submit" value="Log-in">&nbsp;<input type="reset" value="Opnieuw"></center></td>

        </tr>

    </table>

    </form>

    <a href="voegtoe.php?locatie=<?php echo $locatie; ?>">Registreer</a> <a href="ww_vergeten.php"><font size="-1">Wachtwoord vergeten</font></a>.

    </body>

    </html>

    <?php  

}  

if($verstuurd==1&&$controle==1){  

    $ingelogd=true;  

    if(isset($_POST['onthoud'])){

        $query = "UPDATE $tabel_naam SET ingelogd=1, ip='".$_SERVER['REMOTE_ADDR']."' WHERE id='$id'";

        mysql_query($query);

        $id2 = $id;

        for($i=0; $i<7; $i++){

            $id2 = base64_encode($id2);

        }


        $lengte_c = strlen($id2);

        $lengte_h = intval($lengte_c / 2);

        $u =substr($id2,0,$lengte_h);

         //echo $u.'<br />';

        if($lengte_h==($lengte_c/2)){

            $begin_pos = $lengte_c - $lengte_h;

        }
else {

            $begin_pos = $lengte_c - $lengte_h-1;

        }


        $p = '';

        for($i=$begin_pos; $i<$lengte_c; $i++){

            $p .= $id2[$i];

        }


        for($i=0; $i<4; $i++){

            $u = base64_encode($u);

            $p = base64_encode($p);

        }


        setcookie("u", $u, time()+518400);

        setcookie("p", $p, time()+518400);

    }
    

    $_SESSION['ingelogd'] = $ingelogd;  

    $_SESSION['id'] = $id;

    $_SESSION['ip']= $_SERVER['REMOTE_ADDR'];

    header("location: $locatie");  

}
  

?>
Gewijzigd op 01/01/1970 01:00:00 door Kevin
 
PHP hulp

PHP hulp

22/11/2024 18:30:30
 
- wes  -

- wes -

30/05/2007 15:10:00
Quote Anchor link
slotje hierop, ga in je oude topic verder
 
JeffreyG

JeffreyG

30/05/2007 15:27:00
Quote Anchor link
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
<form name="login" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">

// veranderen in

<form name="login" method="post" action="index.php">
 
Kevin

kevin

06/06/2007 15:57:00
Quote Anchor link
dan gaat hij wel naar die pagina maar dan logt hij niet in
 



Overzicht Reageren

 
 

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.