von thenightismy |
Danke TeX für sie schnelle Info.
Ich werde mich gleich mal ran setzen und das Problem losen. |
von TeX |
Deine C:\xampp\htdocs\Neue 2\system\pages\inc\config.inc.php gibt evl. ne Fehlermeldung aus, das darf nicht passieren wenn Du header("Location: /index.php"); benutzt, weil der Header bereits durch die Fehlermeldung gesendet wurde.
Also mal die config.inc.php allein aufrufen, da schreit was rum . |
von thenightismy |
Hallo ich bin Anfänger und hab ein Problem beim einloggen von meiner Seite.
Fehler Meldung:
Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\Neue 2\system\pages\inc\config.inc.php:17) in C:\xampp\htdocs\Neue 2\system\pages\login.php on line 27
Bitte geben Sie Ihren Benutzernamen und Ihr Passwort zum Login
Hier wer der komplette Login Code falls einer mir helfen könnte
<?php
session_start();
include("system/pages/config.php");
$msg = "";
if (isset($_POST['Submit']))
{
$username = $_POST['username'];
$password = md5($_POST[password]);
$result = mysql_query("Select * From login_table where user_name='$username'",$con);
if(mysql_num_rows($result)>0)
{
$row = mysql_fetch_array($result, MYSQL_BOTH);
if($password == $row["user_pass"])
{
$_SESSION['loginok'] = "ok";
$_SESSION['username'] = "username";
$_SESSION['password'] = "password";
$_SESSION['level'] = $row["user_level"];
header("Location: /index.php");
}
else
{
$msg = "Password incorrect";
}
}
else
{
$msg = "Username incorrect";
}
}
?><form name="form1" method="post" action="">
<table width="100%">
<tr>
<td><table width="100%">
<tr>
<td><div align="center">Bitte geben Sie Ihren Benutzernamen und Ihr Passwort zum Login</div></td>
</tr>
</table>
<table width="100%">
<tr>
<td>Username:</td>
<td><input name="username" type="text" id="username"></td>
</tr>
<tr>
<td>Password:</td>
<td><input name="password" type="password" id="password"></td>
</tr>
<tr>
<td> </td>
<td><table width="100%">
<tr>
<td><input type="submit" name="Submit" value="Anmelden"></td>
<td> </td>
</tr>
</table></td>
</tr>
</table>
<table width="100%">
<tr>
<td><div align="center"><?php echo "<font color='red'>$msg</font>" ?></div></td>
</tr>
</table>
<table width="100%">
<tr>
<td><p align="center" class="smallErrorText"><a href="?op=forgot">Password vergessen? </a> / <a href="?op=adduser">Registriren</a> </p></td>
</tr>
</table>
</td>
</tr>
</table></form> |
|