Fernandobm Posted March 11, 2005 Report Share Posted March 11, 2005 Tenho uma pagina em portugues, e queria q quando clicar-se numa imagem, passaria todos os escritos d apagina para ingles, sem abrir um novo php, tem q mudra no mesmo php. Quote Link to comment Share on other sites More sharing options...
0 BEOC Posted March 11, 2005 Report Share Posted March 11, 2005 idiomas/ingles.php <?php $idioma = array( "aqui" => "here", "se" => "if", "Nível" => "Level", "Tópico" => "topic". "Nova Enquete" => "New Pool" ); ?> index.php <?php session_start(); $idioma = $_SESSION['idioma']; // eu uso via $_GET if($idioma == "" or $idioma == "br"){ include "brasil.php"; }elseif($idioma == "USA"){ include "ingles.php"; } ?> use.php <?php include "index.php"; ?> <html> <head> <title><?=$idioma['Nova Enquete'];?></title> </head> <body> <p><?=$idioma['Tópico'];?></p> </body> </html> Quote Link to comment Share on other sites More sharing options...
0 Guilherme014 Posted March 11, 2005 Report Share Posted March 11, 2005 não entendi o que você fez, poderia explicar melhor Quote Link to comment Share on other sites More sharing options...
0 Fernandobm Posted March 11, 2005 Author Report Share Posted March 11, 2005 Como faço entaum, usando o <type="image", para q quando se clicar na imagem, ocorra alguma açao, como abrir um novo link, ou atualizar a propria pagina, algo do tipo. Quote Link to comment Share on other sites More sharing options...
Question
Fernandobm
Tenho uma pagina em portugues, e queria q quando clicar-se numa imagem, passaria todos os escritos d apagina para ingles, sem abrir um novo php, tem q mudra no mesmo php.
Link to comment
Share on other sites
3 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.