[REBOL] GET vs. POST Re:(2)

2000-09-05 Thread webmaster
GET in Rebol is like you describe however, POST comes a string which you have to parse which is really a hassle, as far as my experience recently showed. I had to parse everything and do all kinds of little things to get the thing into a block with single values I could reference. At 12:14 P

[REBOL] GET vs. POST Re:

2000-09-05 Thread princepawn
I cant imagine why it matters whether input is GET or POST... either way you want to pick the values out of a query string... in Perl, the CGI.pm module allows you to get at key-value pairs regardless of whether the data was sent via GET or POST, and I for one have never cared how it came as lo

[REBOL] GET vs. POST Re:

2000-09-02 Thread webmaster
Duh, forget. I got it working. :] Jeff Rubin, CTO & Co-Founder Audiopia Shutup and Listen... http://www.audiopia.com also check out my personal site Brainbyte! http://www.brainbyte.com

[REBOL] GET vs. POST

2000-09-02 Thread webmaster
I have The Official Guide and within there is a small function which is supposed to be able to detect whether GET or POST is used and then access the correct system variable path to receive the info which was submitted by the form. I don't think it works. Anyone else try this code and if so,