Felipin_182 Posted October 3, 2010 Report Share Posted October 3, 2010 hola cumpas: tengo el siguiente problema, recibo una variable en la función y necesito enviarla concatenada a la página de php y no lo puedo hacer. aca esta mi code: el alert lo puse pa verificar si envío datos solamente. function muestraF($queCosa){ alert($queCosa); window.open("FichaPersonal.php?r=$queCosa","recogedor","width=500,height=400, top=100,left=100, resizable=no"); return false; } así lo hago pero esta mal si alguien me ayuda se lo agradeceria. saludos. Link to comment Share on other sites More sharing options...
alvaroxz Posted October 3, 2010 Report Share Posted October 3, 2010 function muestraF(argumento){ alert(argumento); window.open("FichaPersonal.php?r=argumento","recogedor","width=500,height=400, top=100,left=100, resizable=no"); return false; } ahora para llamar a esa funcion que acabas de crear con un dato en php lo haces aso muestraF(<?=$tuVariablePhp; ?>); Link to comment Share on other sites More sharing options...
Felipin_182 Posted October 3, 2010 Author Report Share Posted October 3, 2010 function muestraF(argumento){ alert(argumento); window.open("FichaPersonal.php?r=argumento","recogedor","width=500,height=400, top=100,left=100, resizable=no"); return false; } ahora para llamar a esa funcion que acabas de crear con un dato en php lo haces aso muestraF(<?=$tuVariablePhp; ?>); GRACIAS, PERO LO PROBE Y NO FUNCIONA ENVIA SOLO EL NOMBRE DE LA VARIABLE, EN EL EJEMPLO QUE PUSISTE QUEDA ASI LA URL: http://localhost/FichaPersonal.php?r=argumento Link to comment Share on other sites More sharing options...
rkstro Posted October 3, 2010 Report Share Posted October 3, 2010 Es que deberia ser asi: function muestraF(argumento){ alert(argumento); window.open("FichaPersonal.php?r="+argumento,"recogedor","width=500,height=400, top=100,left=100, resizable=no"); return false; } Link to comment Share on other sites More sharing options...
Felipin_182 Posted October 3, 2010 Author Report Share Posted October 3, 2010 Es que deberia ser asi: function muestraF(argumento){ alert(argumento); window.open("FichaPersonal.php?r="+argumento,"recogedor","width=500,height=400, top=100,left=100, resizable=no"); return false; } GRACIAS. Link to comment Share on other sites More sharing options...
alvaroxz Posted October 3, 2010 Report Share Posted October 3, 2010 :ROLF: perdoname se me olvido ese pequeño gran detalle... Link to comment Share on other sites More sharing options...
Felipin_182 Posted October 3, 2010 Author Report Share Posted October 3, 2010 gracias ahi funciono. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now