I need to open a new page with target blank and automatically update the page to another link when I log into the php
Example:
<META HTTP-EQUIV=REFRESH CONTENT = '0;URL=../clientes/$link.php'>
I need to open a new page with target blank and automatically update the page to another link when I log into the php
Example:
<META HTTP-EQUIV=REFRESH CONTENT = '0;URL=../clientes/$link.php'>
This solution in javascript should resolve:
<form>
<!--Alguns inputs aqui-->
</form>
<script>
//para abrir uma nova pagina (nesse caso abrirá como _blank, ou seja, nova aba)
//assim que o form carregar. Se bem que poderia ser antes também.
window.open('http://www.dominio.com.br/algumapagina.php');
//e você pode redirecionar a pagina atual para outro lugar
window.location.assign('http://www.algumdominio.com.br/algumLink.php');
</script>
Example taken from window.open and window.location.assign .