When making an ajax call, I use the following code:
o.open("POST",q,true);
o.setRequestHeader("Content-type","application/x-www-form-urlencoded");
o.setRequestHeader("Content-length",p.length);
o.setRequestHeader("Connection","close");
Here, q represents the URL and query string, while p only represents the query string.
The structure of my query is as follows:
"/apps/nettrax/f/events_detail.php?get=1&ids="+multiple values added like this: 123~34567~567~678~etc
Everything works smoothly with a few values, but when dealing with large value strings, it fails - the ids variable does not get passed (although get does)... * Please note that I am not utilizing jQuery.