[Subject Prev][Subject Next][Thread Prev][Thread Next][Subject Index][Thread Index]

Re: CGI



"V.Kugan" proclaimed:
> I am new to CGI -Scripts.
> I am trying to send a big buffer of cahar data to the server, how do i do
> that, i cant encode this as URL and send this because it is out of 1K result
> .
> Can any one please give me some idea about how do i do this

There are two ways in which you can send data to the server - using the
GET method and using the POST method.  GET requires all that encoding
and appending to URL bit.  POST does not need it.  Use POST.

Thaths