Ver Mensaje Individual
  #5 (permalink)  
Antiguo 24/12/2008, 14:48
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: pasar variables de javascript a php

Fijate si te sirve:
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 
post(url){
    var 
datos=[].slice.call(arguments);
    var 
f=document.createElement('form');
    
f.action=datos[0];
    
f.method='post';
    for(
i=1;i<datos.length;i++){
        var 
t=document.createElement('input');
        
t.type='hidden';
        
t.value=datos[i].valor;
        
t.name=datos[i].nombre;
        
f.appendChild(t);
    }
    
document.body.appendChild(f);
    
f.submit();
}
function 
get(url){
    var 
datos=[].slice.call(arguments);
    var 
f=document.createElement('form');
    
f.action=datos[0];
    
f.method='get';
    for(
i=1;i<datos.length;i++){
        var 
t=document.createElement('input');
        
t.type='hidden';
        
t.value=datos[i].valor;
        
t.name=datos[i].nombre;
        
f.appendChild(t);
    }
    
document.body.appendChild(f);
    
f.submit();
}
onload=function(){
    var 
ejemplo='un valor';
    
post('test.php',{'nombre':'a','valor':'uno'},{'nombre':'b','valor':500},{'nombre':'c','valor':'foo'},{'nombre':'ejemplo','valor':ejemplo});
    
//get('test.php',{'nombre':'a','valor':'uno'},{'nombre':'b','valor':500},{'nombre':'c','valor':'foo'});
}
</script>
</head>

<body>
</body>
</html>