View Single Post
Old 04-03-2009, 12:43 PM   PM User | #4
oesxyl
Master Coder


 
Join Date: Dec 2007
Posts: 6,682
Thanks: 436
Thanked 890 Times in 879 Posts
oesxyl is a jewel in the roughoesxyl is a jewel in the roughoesxyl is a jewel in the rough
this part is wrong:
Code:
// Pass the login variables like URL variable
http.open('post', 'query_activity.php?girl='+girl+'&prive=' +prive+'&nocache = '+nocache);
http.onreadystatechange = insertReply;
http.send(null);
must be:
Code:
http.open('post','query_activity.php',true);
http.onreadystatechange = insertReply;
http.send('girl='+girl+'&prive=' +prive+'&nocache='+nocache);
best regards
oesxyl is offline   Reply With Quote