Salve a tutti ho un problema nell'estrarre i dati dal db di un solo utente che effettua il login
con questo codice riesco a salvare nella variabile di sessione MM_username il nome, ed a stamparlo a video ma non riesco ad estrarre gli altri dati dell'utente, telefono, via etc...
Questo invece è il form login, dove una volta effettuato il login esce la scritta benvenuto ed il nome dell'utente
PHP:
if (!isset($_SESSION)) {
session_start();
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['username'])) {
$loginUsername=$_POST['username'];
$password=$_POST['password'];
$MM_fldUserAuthorization = "";
$MM_redirectLoginSuccess = "index_home.php";
$MM_redirectLoginFailed = "index_home.php";
$MM_redirecttoReferrer = false;
mysql_select_db($database_conn_bnl, $conn_bnl);
$LoginRS__query=sprintf("SELECT username, password FROM utenti WHERE username=%s AND password=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text"));
$LoginRS = mysql_query($LoginRS__query, $conn_bnl) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = "";
if (PHP_VERSION >= 5.1) {session_regenerate_id(true);} else {session_regenerate_id();}
//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 );
}
}
?>
Questo invece è il form login, dove una volta effettuato il login esce la scritta benvenuto ed il nome dell'utente
PHP:
<?php if ($_SESSION['MM_Username'] === NULL ) { ?>
<form ACTION="<?php echo $loginFormAction; ?>" id="form1" name="form1" method="POST">
<table border="1">
<tr>
<td width="124"><label for="username" id="campouser">Username:</label></td>
<td width="177"><input type="username" name="username" id="username" size="20"></td>
</tr>
<tr>
<td><label for="password">Password: </label></td>
<td><input name="password" type="password" id="password" size="20"></td>
</tr>
<tr>
<td><input name="btn_login" type="submit" id="btn_login" value="Login"></td>
</tr>
<tr>
<td colspan="2"><?php if ($_SESSION['errore']==1){ echo "user o pass errati"; } ?></td>
</tr>
</table>
</form>
</table>
<?php } ?>
<?php if ($_SESSION['MM_Username'] <> NULL ) { ?>
<p><h3><?php echo $_SESSION['MM_Username']; ?></h3>
<br>
<a href="logout.php">Logout</a><br>
Punteggio:<?php echo $row_RS_dati['punti']; ?><?php echo $row_RS_dati['cognome']; ?>
</p>
<?php } ?>