Hallo,
hab folgenes Problem hoffe ihr könnt mir helfen.
ich versuche einen mitgliedsbereich mit mysql zu erstellen. ich folge diesem tuturiol klick .
danach habe ich also folgenen code:
Im browser angeguckt sieht es normal aus. halt login und passwort fenster. danch wenn ich auf den login button klicke kommt ein fenster mit:
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /usr/export/www/hosting/*****/members_login.php on line 20
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /usr/export/www/hosting/*****/members_login.php on line 25
****=name geändert.
danke für antworten
Fabian
hab folgenes Problem hoffe ihr könnt mir helfen.
ich versuche einen mitgliedsbereich mit mysql zu erstellen. ich folge diesem tuturiol klick .
danach habe ich also folgenen code:
PHP-Code:
<?php require_once('Connections/Test.php'); ?>
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
session_start();
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['benutzer'])) {
$loginUsername=$_POST['benutzer'];
$password=$_POST['passwort'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "impressum.html";
$MM_redirectLoginFailed = "info.html";
$MM_redirecttoReferrer = false;
mysql_select_db($database_Test, $Test);
$LoginRS__query=sprintf("SELECT benutzer, passwort FROM benutzer WHERE benutzer='%s' AND passwort='%s'",
get_magic_quotes_gpc() ? $loginUsername : addslashes($loginUsername), get_magic_quotes_gpc() ? $password : addslashes($password));
$LoginRS = mysql_query($LoginRS__query, $Test) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = "";
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
if (isset($_SESSION['PrevUrl']) && false) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess );
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
</head>
<body>
<form id="Anmelden" name="login_formular" method="POST" action="<?php echo $loginFormAction; ?>">
<table width="422" border="0">
<tr>
<th colspan="3" scope="col"><label>Hier können ihr euch mit euren Benutzerdaten einloggen:<br />
<br />
</label>
<label></label></th>
<th width="13" rowspan="4" scope="col"> </th>
</tr>
<tr>
<th width="234" align="right" scope="row"><img src="16-arrow-right.png" width="16" height="16" /></th>
<th width="90" align="right" scope="row">Benutzer:</th>
<td width="237"><input type="text" name="benutzer" /></td>
</tr>
<tr>
<th align="right" scope="row"><img src="16-arrow-right.png" width="16" height="16" /></th>
<th align="right" scope="row">Kennwort: </th>
<td><input type="password" name="passwort" /></td>
</tr>
<tr>
<th height="49" colspan="2" align="right" valign="top" scope="row"><label>
<input type="submit" name="Submit" value="einloggen" />
</label></th>
<td> </td>
</tr>
</table>
<label></label>
</form>
</body>
</html>
Warning: mysql_select_db(): supplied argument is not a valid MySQL-Link resource in /usr/export/www/hosting/*****/members_login.php on line 20
Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /usr/export/www/hosting/*****/members_login.php on line 25
****=name geändert.
danke für antworten
Fabian
Kommentar