I can't find documentation with this
Button element definition can be found here:
https://www.w3.org/TR/DOM-Level-2-HTML/html.html#ID-34812697
name of type DOMString Form control or object name when submitted with
a form. See the name attribute definition in HTML 4.01.
Name attribute definition can be found here
https://www.w3.org/TR/1999/REC-html401-19991224/interact/forms.html#adef-name-BUTTON
name = cdata [CI] This attribute assigns the control name.
Documentation about type CDATA on HTML elements and attributes can be found here:
https://www.w3.org/TR/1999/REC-html401-19991224/types.html#type-cdata
The CDATA CDATA is a sequence of characters from the document
character set and may include character entities. User agents should
interpret attribute values as follows: Replace character entities with
characters, Ignore line feeds, Replace each carriage return or tab
with a single space. User agents may ignore leading and trailing white
space in CDATA attribute values (e.g., " myval " may be
interpreted as "myval"). Authors should not declare attribute values
with leading or trailing white space.
Short Answer
I think you can use the name "west wing" like this
<button class="uk-button" name="west wing">
But maybe you want to use a button like this:
<button class="uk-button" name="choice" value="west wing">West wing</button>
<button class="uk-button" name="choice" value="Another option">Another option</button>
Then you can get the value after submit, like this:
Depends on form method:
$_POST['choice'];
or
$_GET['choice']