3 declare(strict_types=1);
    29     $ui = $DIC->ui()->factory();
    31     $request = $DIC->http()->request();
    43     $select = $ui->input()->field()->select(
"Choose an Option", $options, 
"This is the byline text");
    46     $form = $ui->input()->container()->form()->standard(
'#', [$select]);
    49     if ($request->getMethod() == 
"POST") {
    50         $form = $form->withRequest($request);
    51         $result = $form->getData();
    53         $result = 
"No result yet.";
    58         "<pre>" . print_r($result, 
true) . 
"</pre><br/>" .