View Single Post
Old 11-15-2007, 12:28 AM   PM User | #5
shedokan
Regular Coder

 
Join Date: Oct 2007
Posts: 277
Thanks: 2
Thanked 4 Times in 4 Posts
shedokan has a little shameless behaviour in the past
you don't have to use php use simple javascript, unless your'e reloading the page then I would suggest using GET or POST.
so maybe try that the responce text will be in a variable named serverData:
Code:
if (xmlHttp.readyState==4){ 
serverResponse=xmlHttp.responseText;
callback(serverResponse);
}
shedokan is offline   Reply With Quote