Código
y este es donde mando los datos:
var idt=document.getElementById('idnoticia').value; var cmn=document.getElementById('comentariont').value; var de=document.getElementById('de').value; var ttl=document.getElementById('titulo').value; cad='idnoticia='+encodeURIComponent(idt)+'&comentariont='+encodeURIComponent(cmn)+'&de='+encodeURIComponent(de)+'&titulo='+encodeURIComponent(ttl); return cad; }var conexion1; function enviarFormulario() { conexion1=crearXMLHttpRequest(); conexion1.onreadystatechange = procesarEventos; conexion1.open('POST', 'comentario.php', true); conexion1.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); conexion1.send(retornarDatos()); }function procesarEventos()
Código
espero y me puedan ayudar.SALUDOS
$notifi=mysql_query("INSERT INTO notificaciones(id_de,de,para,id_noticia,titulo,fecha,leido,tipo)VALUES('$_SESSION[id]','$_SESSION[nick]','$_REQUEST[de]','$_REQUEST[idnoticia]','$_REQUEST[titulo]','$fecha',NULL,''$_REQUEST[tipo]')",$conexion)or die("Error en notificaciones ".mysql_error());