| open("method","URL",async,"uname","pswd") |
Specifies the method, URL, and other optional attributes of a
request The method parameter can have a value of "GET", "POST",
or "PUT" (use "GET" when requesting data and use "POST"
when sending data (especially if the length of the data is
greater than 512 bytes.
The URL parameter may be either a relative or
complete URL.
The async parameter specifies
whether the request should be handled asynchronously or not. true means
that script
processing carries on after the send() method, without waiting for a response. false
means that the script waits for a response before continuing script
processing |