[Javascript] IE, Firefox, and XMLHTTPRequest

Hassan Schroeder hassan at webtuitive.com
Fri Dec 29 13:40:01 CST 2006


Matt Murphy wrote:

>         http_request.open('POST', url, true);
>         http_request.send(null);

Have you tried using send() as it's intended?? e.g.

	url= "notes.php";
	data = "action=yaddayadda&....";
	http_request.open('POST', url, true);
	http_request.send(data);

Just a suggestion :-)

-- 
Hassan Schroeder ----------------------------- hassan at webtuitive.com
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com
                opinion: webtuitive.blogspot.com
				
                          dream.  code.





More information about the Javascript mailing list