si se puede, pero para eso necesitas ajax.
Código javascript
:
Ver originalfunction nuevoAjax()
{
/* Crea el objeto AJAX. Esta funcion es generica para cualquier utilidad de este tipo, por
lo que se puede copiar tal como esta aqui */
var xmlhttp=false;
try
{
// Creacion del objeto AJAX para navegadores no IE
xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch(e)
{
try
{
// Creacion del objeto AJAX para IE
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch(E) { xmlhttp=false; }
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp=new XMLHttpRequest(); }
return xmlhttp;
}
uso ese codigo siempre, luego con javascript tomas esos valores. tu ya sabes como supongo
por si no lo sabes:
Código javascript
:
Ver originalvar valorx = document.getElementById("inputx").value;
//y llamas la funcion:
ingresar(valorx,valorz,etc);
luego en otra funcion haces el proceso de ingreso, por ejemplo:
Código javascript
:
Ver originalfunction ingresar(dato1,dato2,etc){
var ajax=nuevoAjax();
ajax.open("GET", "qh.php?dato1="+dato1+"&dato2="+dato2, true);
ajax.onreadystatechange=function(){
if (ajax.readyState==4){
alert("Informacion ingresada");
}
}
ajax.send(null);
}
ya en el qh.php viene la parte que sabes tu:
Código php:
Ver originalinclude("conexion.php");
$dato1=$_GET['dato1'];
$dato2=$_GET['dato1'];
$etc=$_GET['etc'];
$ingresar = "insert into....";
....
creo que esta bien, asi lo tengo yo y me sirve arto xD