Ver Mensaje Individual
  #4 (permalink)  
Antiguo 20/05/2008, 14:16
Avatar de Panino5001
Panino5001
Me alejo de Omelas
 
Fecha de Ingreso: mayo-2004
Ubicación: -34.637167,-58.462984
Mensajes: 5.148
Antigüedad: 20 años, 7 meses
Puntos: 834
Respuesta: problema al enviar variables por url

Sólo agregar que no es necesario enviar las variables por la url. La propiedad name de window te permite pasar variables a otras páginas sin las limitaciones de caracteres del método GET (podés pasar hasta 32 mb) y sin usar tampoco POST. Un ejemplo:
pág1:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<
title>test</title>
<
script>
function 
enviar(valor){
    
window.name=valor;
    
window.location='p2.php';
}
</script>
</head>

<body>
<form id="form1" name="form1" method="post" action="">
  <select name="select" onchange="enviar(this.value)">
      <option>seleccionar</option>
    <option value="aaa">aaa</option>
    <option value="bbb">bbb</option>
    <option value="ccc">ccc</option>
  </select>
</form>
</body>
</html> 
página2:
Código PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
<
meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<
title>test</title>
<
script>
window.onload=function(){
    
document.getElementById('pp').appendChild(document.createTextNode(window.name));
}
</script>
</head>

<body>
<div id="pp"></div>
</body>
</html>