0
Boas, I am bicão and I keep moving in my site I would like the help of you s:
After the customer sent message appeared white screen with message of thanks. I fixed to return to the site but the message disappeared.
echo "$nome, Email enviado. Breve entraremos em Contato!";
header("Location: http://www.xxxxx.com.br");
I’d like to put a echo
or script
(I’m already familiarizing myself with the terms rs) thanks and the page return to the site alone.
Already tried some things copied and adapted from the internet
(<script language="JavaScript" charset="utf-8">alert("$nome, Email enviado. Breve entraremos em Contato!")</script>
<meta HTTP-EQUIV='refresh' CONTENT='4; URL= http://www.xxxx.com.br '>)
but it didn’t work
I tried to
<script> alert( "$nome, Email enviado. Breve entraremos em Contato!)"; </script>”
header("Location: http://www.xxxxx.com.br");
Didn’t work
I tried to
echo “<script language="JavaScript" charset="utf-8">alert("$nome, Email enviado. Breve entraremos em Contato!")</script>
<meta HTTP-EQUIV='refresh' CONTENT='4; URL= http://www.xxxxx.com.br '>
Didn’t work
this refresh tip combined with what I already had was PERFECT. header("Refresh: 10; url=http://minhapagina.com"); Thanks, bro.
– Paulo Molina