From: james_b Date: 2003-07-21T02:10:10+09:00 Subject: Re: Parsing POST and GET variables simultaneously? David Heinemeier Hansson wrote: > Isn't it possible to get variables from POST and GET simultaneously? Aren't they two distinct request types? You either do one or the other? I suppose you could POST to a URL that included a query string, grab the POST data and explicitly parse the query string (the PATH_INFO cgi variable, or maybe SCRIPT_NAME). James