definition: |
getUrlParameter :: IO String getUrlParameter = getEnv "QUERY_STRING" |
demand: |
no demanded arguments |
deterministic: |
deterministic operation |
documentation: |
------------------------------------------------------------------------------ --- Gets the parameter attached to the URL of the script. --- For instance, if the script is called with URL --- "http://.../script.cgi?parameter", then "parameter" is --- returned by this I/O action. --- Note that an URL parameter should be "URL encoded" to avoid --- the appearance of characters with a special meaning. --- Use `urlencoded2string` and `string2urlencoded` from `Network.URL` --- to decode and encode such parameters, respectively. |
failfree: |
() |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{() |-> _} |
name: |
getUrlParameter |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Prelude.IO String |
solution-complete: |
operation might suspend on free variables |
terminating: |
yes |
totally-defined: |
reducible on all ground data terms |