Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] IE, Firefox, and XMLHTTPRequest


  • From: hassan at webtuitive.com (Hassan Schroeder)
  • Subject: [Javascript] IE, Firefox, and XMLHTTPRequest
  • Date: Fri Dec 29 14:20:47 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@xxxxxxxxxxxxxx
Webtuitive Design ===  (+1) 408-938-0567   === http://webtuitive.com
                opinion: webtuitive.blogspot.com
				
                          dream.  code.