Hola amigo muy buenas noches lo que puedes hacer es:
Código PHP:
Ver original<?php
if (!$link)
echo("ERROR");
else{
echo("ERROR");
else{
$ConsultaSQL="SELECT DNI,Pass FROM usuarios WHERE Nick='" .$_POST["NICK"]. "'";
// Antes de hacer el swicth
$pass = $fila['pass']//supongo que se llama asi
$password = $_POST['PASS'];
if($pass != $password){
echo("ERROR");
}else{
switch ($fila[1])
{
case '':
{
$_SESSION["Usuario"] = -1;
echo ("ERROR: No existe el Usuario");
echo "<a href='acceso.html'>CONTINUAR</a>";
}
break;
case '$_POST["PASS"]' :
$_SESSION["Usuario"] = $fila[0];
echo "<a href='redessociales.php'>CONTINUAR</a>";
break;
default:
{
$_SESSION["Usuario"] = -1;
echo ("ERROR: Contraseña Incorrecta");
echo "<a href='acceso.html'>CONTINUAR</a>";
}
}
}
}
}
?>
Espero que te sirva