0
I have a page from which after 03 attempts access to page is blocked. But I would like that if the page is blocked, when trying to access, to appear a modal bootstrap with a message:
Blocked page. Please contact the administrator for request the release of.
And that this modal was activated within this condition in PHP:
if($visualizarVerificar->Bloqueado == "S"){
// Entraria aqui a ativação do modal Boostrap
echo "<script>window.location.href='index.php';</script>";
exit;
}
That’s possible?