I have a page from which after 3 attempts the page access is blocked. However I would like if the page is blocked, when trying to access, a modal bootstrap with a message appears:
Locked page. Please contact your administrator to request unlocking.
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;
}
Is this possible?