Ok leute!
ich hab da nen login script (das funzt auch)
da wird zu der seite weitergeleitet (auch das klappt!)
nur das irgwndwo nen fehler auf der seite sein muss.. der zeigt nur nen leeres blatt an wo der richtige titel is :/
ich geb euch hier mal den code:
ich weiss... da is noch einiges verbesserungsbedürftig sowohl von gestaltung als auch andere sachen!
nur mir geht es erstmal darum, das es überhaupt funzt!
danke schonmal von hier
Leo
ich hab da nen login script (das funzt auch)
da wird zu der seite weitergeleitet (auch das klappt!)
nur das irgwndwo nen fehler auf der seite sein muss.. der zeigt nur nen leeres blatt an wo der richtige titel is :/
ich geb euch hier mal den code:
PHP-Code:
session_start();
$username = $_SESSION["username"];
$admin = $_SESSION["admin"];
echo "<html>";
echo "<head>";
echo "<title>ADMIN MENU!</title>";
echo "<frameset cols=225,* frameborder=0 framespacing=0 border=0>";
echo "<frame src=index.php?aktion=adminmenu name=links noresize>";
echo "<frame src=index.php?aktion=bild name=rechts noresize>";
echo "</frameset>";
echo "</head>";
if ($aktion == "bild")
{
echo "<html>".
"<head>". "</head>".
"<body background=mech3.jpg>";
}
if ($aktion == "adminmenu")
{
echo "<html>".
"<head>".
"<style type=text/css>".
"<!--".
"a:link { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:visited { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:hover { text-decoration:none; font-weight:bold; color:#00FF00 }".
"a:active { text-decoration:none; font-weight:bold; color:#00DF00 }".
"-->".
"</style>".
"<title>ADMIN MENU!</title>".
"</head>".
"<body bgcolor=black text=#00FF00>";
echo "<h2>ADMIN MENU:</h2>";
echo "<a href=index.php?aktion=bild target=rechts>Startseite(Bild)</a>";
echo "<br>". "</br>";
echo "<a href=index.php?aktion=deluser target=rechts>User Löschen!</a>";
echo "<br>". "</br>";
echo "<a href=index.php?aktion=pw target=rechts>Passwort von User ändern!</a>";
echo "<br>". "</br>";
echo "<a href=index.php?aktion=neuacc target=rechts>Neuen Account anlegen!</a>";
echo "<br>". "</br>";
echo "<a href=index.php?aktion=admingeben target=rechts>User Adminrechte geben!</a>";
echo "<br>". "</br>";
echo "<a href=index.php?aktion=adminnehmen target=rechts>User Adminrechte nehmen!</a>";
echo "<br>". "</br>";
echo "<a href=index.php?aktion=alleinaktiv target=rechts>Alle User inaktiv setzen!</a>";
echo "<br>". "</br>";
echo "<a href=logout.php>Logout!</a>";
echo "<br>". "</br>";
}
if (!isset($aktion))
{
$aktion = bild;
}
if ($aktion == "neuacc")
{
echo"<html>".
"<head>".
"<style type=text/css>".
"<!--".
"a:link { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:visited { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:hover { text-decoration:none; font-weight:bold; color:#00FF00 }".
"a:active { text-decoration:none; font-weight:bold; color:#00DF00 }".
"-->".
"</style>".
"<title>Aktivcheck - Neuen Account erstellen</title>".
"</head>".
"<body bgcolor=black text=green>";
echo"<h2>Neuen Account erstellen:</h2>";
echo"<form action=index.php?aktion=accerstellen method=post>".
"<table>".
"<tr>".
"<td>Name:</td>".
"<td><input type=text name=name size=10 maxlength=30></td>".
"</tr>".
"<tr>".
"<td>Passwort:</td>".
"<td><input type=password name=pw size=10 maxlength=10</td>".
"</tr>".
"<td><input type=\"submit\" name=\"sub\" value=\"Account Erstellen\"></td>".
"<td><input type=\"reset\" name=\"res\" value=\"Reset\"></td>".
"</table>".
"</form>";
}
if ($aktion == "accerstellen")
{
$conn = mysql_connect($dbserver,$dbuser,$dbpass);
mysql_select_db($dbname,$conn);
$query = "INSERT INTO aktiv (name, pw) VALUES ('$name', '$pw')";
$result = mysql_query($query,$conn);
if (!$result)
{
die ("Sorry, Datenbankeintrag hat nicht funktioniert");
}
mysql_close($conn);
echo "Account erfolgreich angelegt!";
}
if ($aktion == "alleinaktiv")
{
$conn = mysql_connect($dbserver,$dbuser,$dbpass);
mysql_select_db($dbname,$conn);
$query = "UPDATE aktiv SET aktiv='0'";
$result = mysql_query($query,$conn);
echo "ALLE USER ALS INAKTIV EINGESTUFT!";
}
if ($aktion == "deluser")
{
echo "<html>";
echo "<head>".
"<style type=text/css>".
"<!--".
"a:link { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:visited { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:hover { text-decoration:none; font-weight:bold; color:#00FF00 }".
"a:active { text-decoration:none; font-weight:bold; color:#00DF00 }".
"-->".
"</style>";
echo "<title>User Löschen!</title>";
echo "</head>";
echo "<body bgcolor=black text=green>";
echo "User:";
echo "<br>". "</br>";
$conn = mysql_connect($dbserver,$dbuser,$dbpass);
mysql_select_db($dbname,$conn);
$query = "SELECT * FROM aktiv";
$result = mysql_query($query,$conn);
while ($zeileholen = mysql_fetch_array($result,MYSQL_ASSOC))
{
echo stripslashes($zeileholen["name"]);
echo "<br>". "<br>";
}
echo "<br>". "</br>";
echo"<form action=index.php?aktion=del method=post>";
echo "<table>";
echo "<tr>";
echo "<td>Namen Eingeben:</td>";
echo "<td><input type=text name=name size=10 maxlength=30></td>";
echo "<td><input type=submit name=sub value=\"User Löschen\"><td>".
"</tr>".
"</table>".
"</form>";
echo "</body>";
echo "</html>";
}
if ($aktion == "del")
{
$conn = mysql_connect($dbserver,$dbuser,$dbpass);
mysql_select_db($dbname,$conn);
$query2 = mysql_query("SELECT * FROM aktiv WHERE name='$name' && admin='0' || name='$name' && admin='1' || name='$name' && admin=''");
$query = "DELETE FROM aktiv WHERE name='$name' && admin='0' || name='$name' && admin='1' || name='$name' && admin=''";
$result = mysql_query($query,$conn);
$zeile = mysql_num_rows($query2);
if (!$result)
{
echo "Hat nicht funktioniert!";
}
else
{
echo "Datenbank hat funktioniert!";
}
if ($zeile == "1")
{
echo "User erfolgreich gelöscht!";
}
else
{
echo "ABER: Der User ist SUPERADMIN!!";
}
}
if ($aktion == "pw")
{
echo "<html>";
echo "<head>".
"<style type=text/css>".
"<!--".
"a:link { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:visited { text-decoration:none; font-weight:bold; color:#009F00; }".
"a:hover { text-decoration:none; font-weight:bold; color:#00FF00 }".
"a:active { text-decoration:none; font-weight:bold; color:#00DF00 }".
"-->".
"</style>";
echo "<title>Passwort Ändern!</title>";
echo "</head>";
echo "<body bgcolor=black text=green>";
echo "User:";
echo "<br>". "</br>";
$conn = mysql_connect($dbserver,$dbuser,$dbpass);
mysql_select_db($dbname,$conn);
$query = "SELECT * FROM aktiv";
$result = mysql_query($query,$conn);
while ($zeileholen = mysql_fetch_array($result,MYSQL_ASSOC))
{
echo stripslashes($zeileholen["name"]);
echo "<br>". "<br>";
}
echo "<br>". "</br>";
echo"<form action=index.php?aktion=neupw method=post>";
echo "<table>";
echo "<tr>";
echo "<td>Name Eingeben:</td>";
echo "<td><input type=text name=name size=10 maxlength=30></td>";
echo "</tr>". "<tr>";
echo "<td>Neues Passwort:</td>";
echo "<td><input type=text name=pw size=10 maxlength=30></td>";
echo "</tr>". "<tr>";
echo "<td><input type=submit name=sub value=\"Passwort Ändern\"><td>".
"</tr>".
"</table>".
"</form>";
echo "</body>";
echo "</html>";
}
if ($aktion == "neupw")
{
$conn = mysql_connect($dbserver,$dbuser,$dbpass);
mysql_select_db($dbname,$conn);
$query = "UPDATE aktiv SET pw='$pw' WHERE name='$name'";
$result = mysql_query($query,$conn);
if (!$result)
{
echo "Hat nicht funktioniert!";
}
else
{
echo "Passwort erfolgreich geändert!";
}
}
?>
ich weiss... da is noch einiges verbesserungsbedürftig sowohl von gestaltung als auch andere sachen!
nur mir geht es erstmal darum, das es überhaupt funzt!
danke schonmal von hier
Leo
Kommentar