[REBOL] Form method - POST or GET?

2000-01-21 Thread stefan . falk
Hi again, I've read that POST should be used for larger amounts of data, now I'm just wondering what the "limit" is. I'm probably going to transfer text only, and maybe 30 lines max (80 cols max). //Best Regards Stefan Falk

[REBOL] Form method - POST or GET? Re:

2000-01-21 Thread strejcek
Hi again, I've read that POST should be used for larger amounts of data, now I'm just wondering what the "limit" is. I'm probably going to transfer text only, and maybe 30 lines max (80 cols max). Hi Stefan. IIRC, the limit is/was 1024 chars for whole URL (when you use GET method, content

[REBOL] Form method - POST or GET? Re:

2000-01-21 Thread news . ted
The HTTPD 1.1 spec is at http://www.ietf.org/rfc/rfc2616.txt and others are linked from http://WWW.W3.ORG/Protocols/Specs.html In general, we're suppose to use GET for small amounts of read-only data that won't affect content on the server, and POST for writing new pages, updating databases,