Thread: AJAX Noob
View Single Post
Old 03-24-2007, 08:22 PM   PM User | #2
jmitch18
New Coder

 
Join Date: Mar 2007
Location: Northern Ireland
Posts: 40
Thanks: 0
Thanked 0 Times in 0 Posts
jmitch18 can only hope to improve
Does it really need to be done using POST? Personally I would use GET and do it the following way:

Code:
ajaxRequest.open("GET", "players.php?limit=" + limit, true);
Then just make the appropriate change in the PHP file.

If it's absolutely necessary for it to be done using POST then sorry for not being much help there.
jmitch18 is offline   Reply With Quote