Hallo erstmal.
Ich hab noch ein Anfänger was PHP angeht und denke das es eine ganz einfache Lösung gibt.
Hab ich mich erstmal an einem einfach Loginsystem versucht.
Hier erstma der Code:
index.php
login2.php
Und bekomme dann immer diese Fehlermeldung:
Bitte um eure Hilfe!
Ich hab noch ein Anfänger was PHP angeht und denke das es eine ganz einfache Lösung gibt.
Hab ich mich erstmal an einem einfach Loginsystem versucht.
Hier erstma der Code:
index.php
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<HTML>
<HEAD>
<TITLE>New Document</TITLE>
</HEAD>
<BODY>
<?php
$status = $_GET['status'];
?>
<h2 align="center"> Bitte einloggen </h2>
<?php
if ($status == "true")
{
echo "Die Datein sind ok!";
}
elseif ($status == "false")
{
echo "Die Datein sind falsch!";
}
?>
<form mehtode="post" action="login2.php">
<table align="center">
<tr>
<td>
Username;
</td>
<td>
<input type="text" size="20" name="username" value="Username" /> <BR/<BR/>
</td>
</tr>
<tr>
<td>
Password;
</td>
<td>
<input type="password" size="20" name="password" value="password"/> <BR/><BR/>
</td>
</tr>
<tr>
<td>
<input type="submit" value="Einloggen">
</td>
</tr>
</table>
</form>
</BODY>
</HTML>
PHP:
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if ($username == "d" AND $password == "s")
{
?><meta hppt-equiv="refresh" content="0; URL=index.php"><?php
}
else
{
?><meta hppt-equiv="refresh" content="0; URL=index.php"><?php
}
?>
Code:
Notice: Undefined index: username in C:\xampp\htdocs\login2.php on line 3
Notice: Undefined index: password in C:\xampp\htdocs\login2.php on line 4
Bitte um eure Hilfe!