HTTP::GETQUERY
1g 2023-11-14 laplante@plcb.ca GOWEB/HTTPauthor: laplante@plcb.ca date: 2023-11-14 title: “HTTP::GETQUERY Function” version: 1.0.0 section: 1g
http::getquery — Retrieve #query string parameters
http::getquery([error: err])
The http::getquery
function retrieves query string parameters from the
request URL and returns them as a map.
If no parameters are present, it returns an empty map.
URL:
http://localhost/tests/http1/test-003?a=true&lg=fr
Code:
res = {{
getquery();
}};
Return value:
res = { "a": "true", "lg": "fr" }