Verbinding met server verbroken?
Manaus
21/10/2008 20:48:00Beste php'ers, als ik na het inlogge controleer op de $_POST veriabelen krijg ik in firefox en blanco page en in Opera Verbinding met server verbroken. Maar dit krijg ik enkel als ik de juiste gegevens invoer.
Dit is het stuki script die gebruikt wordt:
De login wordt dus aangeroepen!
Iemand een idee hoe dit komt?
Dit is het stuki script die gebruikt wordt:
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
private function reaction(){
$this->db->query("UPDATE players SET active = NOW() WHERE id =
".$this->db->quote($this->user("id"))." ");
}
public function login($username, $password){
$query = $this->db->query("SELECT * FROM players WHERE username = ".$this->db->quote($username)."");
if($this->db->totaal($query) == 1){
$fPlay = $this->db->fetch($query);
if(sha1($password) == $fPlay['password']){
$this->user = $fPlay;
$this->online = TRUE;
$_SESSION['id'] = $fPlay['id'];
$this->reaction();
return TRUE;
}
else{
return FALSE;
}
}
else{
return false;
}
}
?>
private function reaction(){
$this->db->query("UPDATE players SET active = NOW() WHERE id =
".$this->db->quote($this->user("id"))." ");
}
public function login($username, $password){
$query = $this->db->query("SELECT * FROM players WHERE username = ".$this->db->quote($username)."");
if($this->db->totaal($query) == 1){
$fPlay = $this->db->fetch($query);
if(sha1($password) == $fPlay['password']){
$this->user = $fPlay;
$this->online = TRUE;
$_SESSION['id'] = $fPlay['id'];
$this->reaction();
return TRUE;
}
else{
return FALSE;
}
}
else{
return false;
}
}
?>
De login wordt dus aangeroepen!
Iemand een idee hoe dit komt?
Er zijn nog geen reacties op dit bericht.