diff --git a/content/collections/variables/get.md b/content/collections/variables/get.md index 6cd41bf98..53522a76e 100644 --- a/content/collections/variables/get.md +++ b/content/collections/variables/get.md @@ -57,3 +57,17 @@ Be sure to escape these values with the `sanitize` modifier if you plan to use t {!! Statamic::modify(request()->get('jeggings'))->sanitize() !!} ``` :: + +Accessing `GET` values with a variable key in Antlers can be done by wrapping the key with `[]`. + +```antlers +{{ show_key = "show" }} +{{ hide_key = "hide" }} +{{ get[show_key] }} +{{ get[hide_key] }} +``` + +```html +pants +jeggings +```