Re: HTTP::Request get or post??

2001-07-21 Thread Greg Meckes
--- Will Muir <[EMAIL PROTECTED]> wrote: > > Here is a quick one, when using HTTP::Request to get data from a website how do I if >I should > use get or post to receive that content of the site. I am pretty new to this so >please be > gentle. > > Thanks in advance > > will > If your just t

Re: HTTP::Request get or post??y

2001-07-21 Thread C.J. Collier
POST sends a request and sets some CGI params. GET can be used to do the same thing, but you need to append a ?foo=bar&baz=wally to the url, if you want to send data to a CGI. If it's not a CGI, though I suggest using GET ;) I think you need a bit of HTTP and CGI background. I suggest reading

HTTP::Request get or post??

2001-07-20 Thread Will Muir
Here is a quick one, when using HTTP::Request to get data from a website how do I if I should use get or post to receive that content of the site. I am pretty new to this so please be gentle. Thanks in advance will