Ver Mensaje Individual
  #4 (permalink)  
Antiguo 19/08/2008, 13:42
Avatar de agressor
agressor
 
Fecha de Ingreso: noviembre-2007
Ubicación: Knocking the Death Door..
Mensajes: 368
Antigüedad: 16 años, 5 meses
Puntos: 3
Respuesta: Enviar datos en consulta ajax

Creo que te deberia quedar algo asi..

Prueba y me cuentas..

xmlHttp=GetXmlHttpObject()

if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
}

var url="consulta.php"
url=url+"?fecha1="+desde+"?fecha2"+hasta
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)



Salu2.!!
__________________
Somos lo que nosotros queremos ni mas ni menos..
No hay dia mas perdido que aquel en que no hemos reido..
La vida es tal y como debe ser...
Nadie vivira por ti...

Última edición por agressor; 20/08/2008 a las 13:57 Razón: error