Answer the question
In order to leave comments, you need to log in
Is it mandatory to use ActiveForm to create forms in YII2?
Hello.
Now I am transferring one project to YII2. Haven't worked with him before.
And here a question arose when creating a login form.
In the documentation, ActiveForm is used to create a login form.
Is this the only way to create a form in Yii2 so that the validation rules work correctly?
public function rules()
{
return [
// the name, email, subject and body attributes are required
[['name', 'email', 'subject', 'body'], 'required'],
// the email attribute should be a valid email address
['email', 'email'],
];
}
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