01/06/2004, 04:21
|
| | | Fecha de Ingreso: mayo-2003 Ubicación: Madrid
Mensajes: 151
Antigüedad: 21 años, 8 meses Puntos: 0 | |
<html>
<head>
<title>Aplicación segura</title>
</head>
<body>
<?
$user=$_SESSION['usuario'];
$pass=$_SESSION['contrasena'];
$con_db=mysql_connect("localhost","root"," ");
mysql_select_db("dw_mysql",$con_db);
$registros=mysql_query("Select * from datos where Nombre='$user' AND DNi='$pass'");
if(mysql_num_rows($registros!=0))
<br>
<a href="salir.php">Salir</a>
</body>
</html> |