in reply to An Idea for hiding

And if that doesn't work, then the node can be encoded into the URL in a way other than as a query parameter, say as perlmonks.org/node/1234, and lastnode can be in the body of the GET as shown above.

    -- Chip Salzenberg, Free-Floating Agent of Chaos

Replies are listed 'Best First'.
Re: Re: An Idea for hiding
by Fastolfe (Vicar) on Nov 28, 2001 at 02:20 UTC

    Only the POST method allows for an entity body in the request. You can mix "GET"-style parameters with POST data in a POST request, but not vice-versa.

    Though your post does brings up a good point regarding the usability of URL's. All of this extra cruft in the URL parameter list is really generally unnecessary. I would personally love to see more usable URL's of the form:

    http://perlmonks.org/node/an.idea.for.hiding or http://perlmonks.org/node/Re:%20an%20idea%20for%20hiding or http://perlmonks.org/node/1234 as you suggest
    The rest of the junk we see in the URL can generally be obtained through more reliable (and less obvious) means.