diff --git a/index.php b/index.php index 8420ab3..6a216ac 100644 --- a/index.php +++ b/index.php @@ -16,4 +16,10 @@ $form->createRadio("name1", ["id" => "r2"]); $form->createLabel("RadioButton", ["for" => "r3"]); $form->createRadio("name1", ["id" => "r3"]); $form->createTextarea("textarea", "dsadasads", ["id" => "t1"]); +$form->createBeginSelect("select", ["id" => "s1"]); +$form->createOption("option", "a1", ["id" => "o1"]); +$form->createOption("option", "a2", ["id" => "o2"]); +$form->createOption("option", "a2", ["id" => "o3"]); +$form->createEndSelect(); +$form->createButton('button', "Кнопка", ["id" => "button"]); $form->endForm();