Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/07/2012, 12:47
Avatar de emprear
emprear
Colaborador
 
Fecha de Ingreso: junio-2007
Ubicación: me mudé
Mensajes: 8.388
Antigüedad: 17 años, 5 meses
Puntos: 1567
Respuesta: window.location parametros

Debería funcionarte, aumque supongo que ese código que mostrás no está completo, puede que haya un error en otra parte

banderas.html

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <title>titulo</title>
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <script type="text/javascript">
  7. //<![CDATA[
  8. /* script */
  9. function banderas(){
  10. var c= "0001";
  11. window.location = "banderas.php?bandera=usa&codigo=" + c;
  12. }
  13. //]]>
  14. </head>
  15. <button onclick="banderas();">usa</button>
  16. </body>
  17. </html>


banderas.php

Código PHP:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <title>titulo</title>
  6. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  7.  
  8. </head>
  9. <body>
  10. <?php
  11. $ban=$_GET["bandera"];
  12. $cod=$_GET["codigo"];
  13.  
  14. echo "$ban - $cod";
  15.  
  16. ?>
  17. </body>
  18. </html>

Saludos
__________________
La voz de las antenas va, sustituyendo a Dios.
Cuando finalice la mutación, nueva edad media habrá
S.R.