Tema: php o java?
Ver Mensaje Individual
  #7 (permalink)  
Antiguo 17/12/2005, 12:39
Avatar de lily_cv
lily_cv
 
Fecha de Ingreso: noviembre-2005
Mensajes: 165
Antigüedad: 18 años, 5 meses
Puntos: 0
en mi pagina de manifiesto.php tengo esto:
<?
session_start();
$_SESSION['Xl']=$_POST['txtl'];
$_SESSION['Xp']=$_POST['txtp'];


include('conexiond.php');
$link = Conectarse();
$Rlogin = mysql_query("select * from acceso where login='".$_POST['txtl']."' and psw='".$_POST['txtp']."'",$link);
$Items = mysql_num_rows($Rlogin);
if ($Items >0){
$FilaLog = mysql_fetch_array($Rlogin);
} else {
header("Location: acceso.php");
exit;
}
?>
<html>
<body>
.
.
.
</body>
</html>