Ns parsequery

From AOLserver Wiki
Revision as of 02:26, 20 June 2004 by WikiSysop (talk | contribs) (imported from WiKit id 613)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Man page: http://aolserver.com/docs/tcl/ns_parsequery.html


NAME

ns_parsequery - Parse a URL query string into an ns_set.

SYNOPSIS

ns_parsequery querystring

DESCRIPTION

This command parses the specified querystring into an ns_set, which is returned. The keys and values will be decoded.

EXAMPLES

   % set s ns_parsequery "msg=Hello+World!&a=b&a=b&c=d"
   d0
   % ns_set array $s
   msg {Hello World!} a b a b c d

Category Documentation - Category Core Tcl API