error over header ...
ik krijg deze error :
Warning: Cannot modify header information - headers already sent by (output started at /home/tombiex100/domains/tombiex100.onehundred.axc.nl/public_html/index.php:10) in /home/tombiex100/domains/tombiex100.onehundred.axc.nl/public_html/index.php on line 44
dit is mijn script :
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
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
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Log in screen</title>
</head>
<body bgcolor="#FF6600">
<?php
if($_POST["Verborgen"]=="Waarde") {
if (empty($_POST['username']) || empty($_POST['password']))
{
echo 'U heeft uw gebruikersnaam en/of wachtwoord niet ingevult.';
}
else { echo 'Het is handig als je iets invult ;)';
}
}
/* Db toevoegen */
mysql_connect( 'localhost', 'username', 'password' );
if ( !mysql_connect( 'localhost', 'username', 'password' ) )
{
print "<p>Er is een verbindingsprobleem.</p>";
die();
}
if ( !mysql_select_db( 'database' ) )
{
print "<p>De database is niet gevonden op de server.</p>";
die();
}
$tabel = 'inloggen';//je tabel met gebruikersnaam en wachtwoord
$query = mysql_query("SELECT * FROM ".$tabel." WHERE username='".$_POST['username']."' && password='".$_POST['password']."'");
while ($row = mysql_fetch_row($query)){
// succesvol ingelogd
$_SESSION['gebruiker'] = $row[0];
Header("location: succes.php");
}
?>
<form action="" method="post">
<input type='hidden' name="Verborgen" value="Waarde" />
Username: <br /><input type='text' name="username" /> <br /><br />
Password: <br /><input type='password' name="password" /><br /><br />
<input type='submit' name='submit' value="Log in " /> or <a href="zoeken.php">Guest</a> <br /> <br />
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Log in screen</title>
</head>
<body bgcolor="#FF6600">
<?php
if($_POST["Verborgen"]=="Waarde") {
if (empty($_POST['username']) || empty($_POST['password']))
{
echo 'U heeft uw gebruikersnaam en/of wachtwoord niet ingevult.';
}
else { echo 'Het is handig als je iets invult ;)';
}
}
/* Db toevoegen */
mysql_connect( 'localhost', 'username', 'password' );
if ( !mysql_connect( 'localhost', 'username', 'password' ) )
{
print "<p>Er is een verbindingsprobleem.</p>";
die();
}
if ( !mysql_select_db( 'database' ) )
{
print "<p>De database is niet gevonden op de server.</p>";
die();
}
$tabel = 'inloggen';//je tabel met gebruikersnaam en wachtwoord
$query = mysql_query("SELECT * FROM ".$tabel." WHERE username='".$_POST['username']."' && password='".$_POST['password']."'");
while ($row = mysql_fetch_row($query)){
// succesvol ingelogd
$_SESSION['gebruiker'] = $row[0];
Header("location: succes.php");
}
?>
<form action="" method="post">
<input type='hidden' name="Verborgen" value="Waarde" />
Username: <br /><input type='text' name="username" /> <br /><br />
Password: <br /><input type='password' name="password" /><br /><br />
<input type='submit' name='submit' value="Log in " /> or <a href="zoeken.php">Guest</a> <br /> <br />
</form>
</body>
</html>
iemand een idee hoe ik dit oplos ? want ik snap het niet aangezien het via xamp wel gewoon werkt..
Gewijzigd op 13/11/2012 19:45:49 door Tom bijlsma
Simpel: GEEN ENKELE OUTPUT voor header().
Jij begint al met html en dat werkt dus niet.
- je script is zo lek als een mandje, kijk is naar mysql_real_escape_string.