Guest AtomicQuix Posted November 5, 2004 Report Share Posted November 5, 2004 Criei paginas em PHPcomo faço pra redirecionar elastipo www.meusite.com.br/pagina.php?vai=lugar Quote Link to comment Share on other sites More sharing options...
0 George Posted November 5, 2004 Report Share Posted November 5, 2004 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. mais info: http://br.php.net/manual/pt_BR/function.header.php Quote Link to comment Share on other sites More sharing options...
0 Clenisson Posted November 6, 2004 Report Share Posted November 6, 2004 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"); } ... Quote Link to comment Share on other sites More sharing options...
Question
Guest AtomicQuix
Criei paginas em PHP
como faço pra redirecionar elas
tipo www.meusite.com.br/pagina.php?vai=lugar
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.