<?php
include_once("config.inc.php");
session_start();
if ((!isset($nick)) OR (!isset($pw)))
{
die ("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><LINK REL=\"SHORTCUT ICON\" HREF=\"../../favicon.ico\"><meta http-equiv=\"imagetoolbar\" content=\"no\"><link rel=\"stylesheet\" href=\"../../css/style.css\"><title>Mitgliedsadministration</title></head><body><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"20\" height=\"20\" bgcolor=\"#3366CC\"><img src=\"../../images/none.gif\" width=\"20\" height=\"20\"></td><td style=\"background-image: url(../../images/tabhg.jpg); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #3366CC;\"> Mitgliedsadministration</td></tr></table><br><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border: 1pt solid #3366CC;\"><tr><td><table width=\"100%\" style=\"font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;\"><tr><td height=\"50\" align=\"center\"><font style=\"font-weight: bold; color: #CC0000;\">Es ist ein Fehler beim einloggen aufgetreten!</font><br>Sie sind nicht eingeloggt. Bitte loggen Sie sich auf der Homepage korrekt ein!</td></tr></table></td></tr></table></body></html>");
}
$conn = @ mysql_connect($sqlserver,$sqluser,$sqlpass);
if (!$conn)
{
die ("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><LINK REL=\"SHORTCUT ICON\" HREF=\"../../favicon.ico\"><meta http-equiv=\"imagetoolbar\" content=\"no\"><link rel=\"stylesheet\" href=\"../../css/style.css\"><title>Mitgliedsadministration</title></head><body><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"20\" height=\"20\" bgcolor=\"#3366CC\"><img src=\"../../images/none.gif\" width=\"20\" height=\"20\"></td><td style=\"background-image: url(../../images/tabhg.jpg); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #3366CC;\"> Mitgliedsadministration</td></tr></table><br><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border: 1pt solid #3366CC;\"><tr><td><table width=\"100%\" style=\"font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;\"><tr><td height=\"50\" align=\"center\"><font style=\"font-weight: bold; color: #CC0000;\">Es ist ein Fehler beim einloggen aufgetreten!</font><br>Es konnte keine Verbindung zum MySQL-Server aufgebaut werden. Bitte provieren Sie es später nocheinmal!</td></tr></table></td></tr></table></body></html>");
}
mysql_select_db($sqldb,$conn);
$query = "SELECT pw FROM $tabname_members WHERE nick = '".$nick."'";
$result = mysql_query($query,$conn);
$result = mysql_query("SELECT pw FROM $tabname_members WHERE nick = '".$nick."'",$conn);
$zeileholen = mysql_fetch_array($result,MYSQL_ASSOC);
mysql_close($conn);
$pass = md5("".$pw."");
if (!$zeileholen)
{
die ("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><LINK REL=\"SHORTCUT ICON\" HREF=\"../../favicon.ico\"><meta http-equiv=\"imagetoolbar\" content=\"no\"><link rel=\"stylesheet\" href=\"../../css/style.css\"><title>Mitgliedsadministration</title></head><body><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"20\" height=\"20\" bgcolor=\"#3366CC\"><img src=\"../../images/none.gif\" width=\"20\" height=\"20\"></td><td style=\"background-image: url(../../images/tabhg.jpg); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #3366CC;\"> Mitgliedsadministration</td></tr></table><br><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border: 1pt solid #3366CC;\"><tr><td><table width=\"100%\" style=\"font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;\"><tr><td height=\"50\" align=\"center\"><font style=\"font-weight: bold; color: #CC0000;\">Es ist ein Fehler beim einloggen aufgetreten!</font><br>Dieser Benutzername ist uns leider nicht bekannt.</td></tr></table></td></tr></table></body></html>");
}
if ($zeileholen["pw"] <> $pass)
{
die ("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><LINK REL=\"SHORTCUT ICON\" HREF=\"../../favicon.ico\"><meta http-equiv=\"imagetoolbar\" content=\"no\"><link rel=\"stylesheet\" href=\"../../css/style.css\"><title>Mitgliedsadministration</title></head><body><table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\"20\" height=\"20\" bgcolor=\"#3366CC\"><img src=\"../../images/none.gif\" width=\"20\" height=\"20\"></td><td style=\"background-image: url(../../images/tabhg.jpg); font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; font-weight: bold; color: #3366CC;\"> Mitgliedsadministration</td></tr></table><br><table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border: 1pt solid #3366CC;\"><tr><td><table width=\"100%\" style=\"font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px;\"><tr><td height=\"50\" align=\"center\"><font style=\"font-weight: bold; color: #CC0000;\">Es ist ein Fehler beim einloggen aufgetreten!</font><br>Das angegebene Passwort passt nicht zum angegebenen Benutzernamen.</td></tr></table></td></tr></table></body></html>");
}
session_register('nick');
header ("Location: memberadministration.php");
?>