Jump to content
Fórum Script Brasil
  • 0

Fiz A Pagina Em Php Como Se Redireciona


Guest AtomicQuix

Question

2 answers to this question

Recommended Posts

  • 0

você pode usar o header();

<?
header("Location: http://www.meusite.com.br/pagina.php?vai=lugar");
?>

<html>
<head>
...

Obs.: sempre coloque o comando heder() antes de tudo na página, com exceção da tag de abertura do PHP ("<?"), incluindo tb, quebras de linha. smile.gif

mais info: http://br.php.net/manual/pt_BR/function.header.php

Link to comment
Share on other sites

  • 0

não entendi bem.. mas parece que você quer redirecionar para alguma pagina da variavel vai, certo?

Faz assim:

header("Location: $vai");
ou usa o javascript no echo:
echo "<script>location.href='$vai'</script>";
Ou.. pode fazer assim:
if($vai=="site1"){
header("Location: http://www.site1.com.br");
}
elseif($vai=="site2"){
header("Location: http://www.site2.com.br");
}

...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...