-1
Friends can use a request on <meta http-equiv='refresh' content='0;'>
.
I have this code below working,
if($buscasegura->execute() == '');
echo "<meta http-equiv='refresh' content='0; prod_carrinho2.php'>
<script type=\"text/javascript\">
alert(\"Cliente cadastrado com sucesso!!!\");</script>";
else:
echo "<meta http-equiv='refresh' content='0; cad_cliente.php'>
<script type=\"text/javascript\">
alert(\"Já existe uma conta cadastrada com esse E-mail!!!\");</script>";
endif;
and returning to a new page, either with the success of the registration or with the existence of the registered e-mail.
I would like him to return within a certain DIV, and tried to do it as follows below.
echo "<meta class='sucesso' http-equiv='refresh' content='0;'>
<script type=\"text/javascript\">
alert(\"Cliente cadastrado com sucesso!!!\");</script>";
else:
echo "<meta class='erro' http-equiv='refresh' content='0;'>
<script type=\"text/javascript\">
alert(\"Já existe uma conta cadastrada com esse E-mail!!!\");</script>";
endif;
}
?>
<script language="javascript">
////// Direciona o cliente para para suas compras, depois de executar o cadastro com sucesso //////
$(document).ready(function(){
$('.sucesso').click(function(){
$.ajax({url:"prod_carrinho2.php",success:function(data){
$('#visual').html(data);
}
});
});
});
////// Direciona o cliente para inserir um outro endereço de E-mail //////
$(document).ready(function(){
$('.erro').click(function(){
$.ajax({url:"cad_cliente.php",success:function(data){
$('#visual').html(data);
}
});
});
});
</script>
Can you identify a <meta http-equiv='refresh' content='0;'>
, to make the Ajax request work, or not?
Thanks Sam, thanks for the tips, I am layman and I am trying to learn... I will put in practice your guidance and correct the mentioned error... Once again THANK YOU!!!
– Murilo