Tengo 2 formularios.
En el 1º, el usuario introduce su nombre de usuario y password (lo que le permite ir al 2º formulario).
En el 2º, se muestra el contenido de varios campos de una base de datos.
Me gustaría que en el segundo formulario, se muestre solo la información del usuario que accede a ella.
Muchas gracias.
Código PHP:
Ver original
<?php require_once('../Connections/contactos.php'); ?> <?php function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { } $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue); switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": break; case "double": break; case "date": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "defined": $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue; break; } return $theValue; } } $query_usuar = "SELECT * FROM contactos ORDER BY fechaentrada DESC"; ?> <?php // *** Validate request to login to this site. } $loginFormAction = $_SERVER['PHP_SELF']; $_SESSION['PrevUrl'] = $_GET['accesscheck']; } $loginUsername=$_POST['usuario']; $password=$_POST['contrasenya']; $MM_fldUserAuthorization = ""; $MM_redirectLoginSuccess = "anuncio_usuario.php"; $MM_redirectLoginFailed = "usuario_error.php"; $MM_redirecttoReferrer = false; $LoginRS__query=sprintf("SELECT nombre_usuario, password FROM contactos WHERE nombre_usuario=%s AND password=%s", GetSQLValueString($loginUsername, "text"), GetSQLValueString($password, "text")); if ($loginFoundUser) { $loginStrGroup = ""; //declare two session variables and assign them $_SESSION['MM_Username'] = $loginUsername; $_SESSION['MM_UserGroup'] = $loginStrGroup; $MM_redirectLoginSuccess = $_SESSION['PrevUrl']; } } else { } } ?> ... <form id="form1" name="form1" method="POST" action="<?php echo $loginFormAction; ?>"> <p align="left"><strong>Usuario:</strong> <input type="text" name="usuario" id="usuario" /> </p> <p align="left"><strong>Contraseña:</strong> <input name="contrasenya" type="password" id="contrasenya" size="19" /> </p> <p align="left"> <input type="submit" name="button" id="button" value="Entrar" /></p></form></div> <p align="right" style="color: #00F; font-weight: bold;"> </p> </div> <div align="center"></div> </div> <!-- end #container --> </div> </body> </html> <?php ?>