Automatic redirection

0

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'>
    
asked by anonymous 27.12.2017 / 19:34

1 answer

0

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 .

    
02.01.2018 / 01:32