When I test the login , I go to autenticar.php
, but the screen goes blank instead of heading to the main page.
msql and php command tested and working)
<script language="javascript">
function sucesso(){
setTimeout("window.location='principal.html'", 4000);
}
function failed(){
setTimeout("window.location='login.html'", 4000);
}
</script>
$consulta = mysqli_query("SELECT * FROM usuarios WHERE usuario = '$email' AND senha = '$pass'") or die (mysqli_error($conexao));
$linhas = mysqli_num_rows($consulta);
if($linhas == 0){
echo"O login falhou. Você será redirecionado para a página de login em 4 segundos.";
echo"<script language='javascript'>failed()</script>";
} else {
$_SESSION["email"]=$_POST["email"];
$_SESSION["senha"]=$_POST["pass"];
echo"Você foi logado com sucesso. Redirecionando em 4 segundos.";
echo"<script language='javascript'>sucesso()</script";
}
?>