Caudium.parse_query_string()
 
    NAME
Caudium.parse_query_string()

SYNOPSIS
void Caudium.parse_headers(string query, mapping results);

DESCRIPTION
Format and unescape all query string and add the result to the mapping results.

string query
The query string to parse.

mapping results
The mapping where result will be added.

RETURNS
Nothing. Or throw when there is an error (usualy when a memory problems happened).

EXAMPLE
Pike v7.4 release 1 running Hilfe v3.5 (Incremental Pike Frontend)
> mapping pof = ([ ]);
> Caudium.parse_query_string("toto=zzz&plink=pof%20zou", pof);
(1) Result: 0
> pof;
(2) Result: ([ /* 2 elements */
              "plink":"pof zou",
              "toto":"zzz"
            ])
 
HTML OK CSS