Answer the question
In order to leave comments, you need to log in
How to make a form without using ActiveForm?
Hello everyone! There was such a question, is it possible to somehow create a contact form on the site without using ActiveForm.
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'name')->textInput(['placeholder' => 'Ваше имя']); ?>
<?= $form->field($model, 'phone')->textInput(['placeholder' => 'Ваш телефон']); ?>
<?php ActiveForm::end(); ?>
<form action=" method="post">
<input type="text" name="name" placeholder="Ваше имя*">
<input type="text" name="phone" placeholder="Ваш телефон*">
</form>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question