$_GET_RAW

Typekeyword
DictionaryLCS
LibraryLiveCode Script
Syntax
$_GET_RAW
Summary

$_GET_RAW is the QUERY_STRING component of a URL.

Introduced4.6.3
OSmac, windows, linux
Platformsserver
Example
put $_GET_RAW into tQueryString
set the itemdelimiter to "&"
repeat for each item tVariablePair in $_GET_RAW
   set the itemdelimiter to "="
   put urlDecode(item 1 of tVariablePair) into tVariableKey
   put urlDecode(item 2 of tVariablePair) into tVariableValue
   -- do something with key and value --
   set the itemdelimiter to "&"
end repeat
RelatedKeyword: $_POST, $_SERVER, $_GET_BINARY, $_GET
Description

Use the $_GET_RAW keyword to get the QUERY_STRING component of a url. http://www.website.com?variable1=value1&variable2=value2

$_GET_RAW is only available when running in CGI mode (Server).

Note: The $_GET_RAW keyword is useful as it provides a means to get the QUERY_STRING data in order.