Today's Posts Follow Us On Twitter! TFL Members on Twitter  
Forum search: Advanced Search  
Navigation
Marketplace
  Members Login:
Lost password?
  Forum Statistics:
Forum Members: 24,254
Total Threads: 80,792
Total Posts: 566,472
There are 1332 users currently browsing (tf).
 
  Our Partners:
 
  TalkFreelance     Design and Development     Programming     Other Programming Languages :

ajax send problem

Thread title: ajax send problem
     
    Thread tools Search this thread Display Modes  
Prev Previous Post   Next Post Next
05-23-2007, 11:24 PM
#2
Salathe is offline Salathe
Salathe's Avatar
Status: Community Archaeologist
Join date: Jul 2004
Location: Scotland
Expertise: Software Development
Software: vim, PHP
 
Posts: 3,820
iTrader: 25 / 100%
 

Salathe will become famous soon enough

Send a message via MSN to Salathe

  Old

You don't want to be sending anything within the send() call since this is a GET request. That would be alright if you were POSTing the data, but for a GET you just append the data to the URL ("time.php?name=...").

Code:
var url = "time.php?name=" 
        + document.myForm.username.value 
        + "&password=" 
        + document.myForm.password.value;
xmlHttp.open("GET", url, true);
xmlHttp.send(null);

     


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

  Posting Rules  
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump:
 
  Contains New Posts Forum Contains New Posts   Contains No New Posts Forum Contains No New Posts   A Closed Forum Forum is Closed