Hallo,
ich habe ein Tutorial mit einem Script gefunden und benutzt, es funktioniert alles PERFEKT, Nun wollte ich aber das PHP Login in einer HTML Website einbauen, Mir war auch klar das PHP in HTML nicht geht sondern nur HTML in PHP also speicherte ich die Datei als index.php, nun kommt aber immer so ein hässliches Bild:
(http://s1.directupload.net/images/110822/wrl2blnu.png)
Wen ich das In der Username zeile wegmache und mich dan einlogge geht alles, Das problem ist nur das das für den benutzer nicht wirklich schln aussieht und der wahrschinlich auch nicht weiß was er tun soll wen das da steht. Wie kann ich das wegmachen, aber so das der Login immernoch geht?
PS: Der Quellcode:
Vielen Dank
LG
ich habe ein Tutorial mit einem Script gefunden und benutzt, es funktioniert alles PERFEKT, Nun wollte ich aber das PHP Login in einer HTML Website einbauen, Mir war auch klar das PHP in HTML nicht geht sondern nur HTML in PHP also speicherte ich die Datei als index.php, nun kommt aber immer so ein hässliches Bild:
(http://s1.directupload.net/images/110822/wrl2blnu.png)
Wen ich das In der Username zeile wegmache und mich dan einlogge geht alles, Das problem ist nur das das für den benutzer nicht wirklich schln aussieht und der wahrschinlich auch nicht weiß was er tun soll wen das da steht. Wie kann ich das wegmachen, aber so das der Login immernoch geht?
PS: Der Quellcode:
PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Acery World...Die Community für Gamer,Programmierer und
Grafiker</title>
<style type="text/css">
body, html {
height:100%;
}
body {
background-color:#86c9ef;
background-image:url('http://acery-web.cwsurf.de/images/bb_1.png');
background-position:center;
background-repeat:no-repeat;
}
</style>
</head><body style="margin-top: 0px; height: 546px; margin-left: 144px; width: 716px;">
<br>
<img style="width: 200px; height: 55px;" alt="Acery World" src="../../logo.png"><br>
<span style="color: rgb(102, 102, 102);"> </span><span style="font-family: Arial; color: rgb(102, 102, 102);">
Home Games News
Chat Tutorials</span> <span style="color: rgb(102, 102, 102); font-family: Arial;">Uploader</span><br style="color: rgb(153, 153, 153); font-family: Arial;">
<title>Log</title>
<html>
<head>
<?php session_start();
// Check if he wants to login:
if (!empty($_POST[username]))
{
require_once("connect.php");
// Check if he has the right info.
$query = mysql_query("SELECT * FROM members
WHERE username = '$_POST[username]'
AND password = '$_POST[password]'")
or die ("Error - Couldn't login user.");
$row = mysql_fetch_array($query)
or die ("Error - Couldn't login user.");
if (!empty($row[username])) // he got it.
{
$_SESSION[username] = $row[username];
echo "Welcome $_POST[username]! You've been successfully logged in.";
exit();
}
else // bad info.
{
echo "Error - Couldn't login user.<br /><br />
Please try again.";
exit();
}
}
?>
<title>Login</title>
</head>
<body>
<form action="login.php" method="post">
<table align="center" border="1" cellpadding="3" cellspacing="1"
width="75%">
<tbody>
<tr>
<td width="100%">
<h5>Login</h5>
</td>
</tr>
<tr>
<td width="100%"><label>Username: <input name="username"
size="25" value="<? echo $_POST[username]; ?>" type="text"></label></td>
</tr>
<tr>
<td width="100%"><label>Password: <input name="password"
size="25" value="" type="password"></label></td>
</tr>
<tr>
<td width="100%"><input value="Login!" type="submit"></td>
</tr>
</tbody>
</table>
</form>
</body>
</html>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<form action="non" name="footer"><span style="color: rgb(102, 102, 102); font-family: Arial;"> <small>
<small>©2010-2011 Acery Web </small></small></span><b style="color: rgb(102, 102, 102); font-family: Arial;"><small><small>Alle
Rechte vorbehalten</small> </small>
Kontakt <a style="color: rgb(102, 102, 102);" href="impressum.html">Impressum</a>
</b></form>
</body></html>
Vielen Dank
LG