Home Backend Development PHP Tutorial form in Yii framework

form in Yii framework

Dec 01, 2017 am 09:30 AM
form yii form

Students who have used the yii framework all know that the form form in the yii framework can be submitted using the yii internally defined form component. The editor today Let's take a look at the formform component in yii!

Without further ado, let’s talk about the code:

<?php
//引入命名空间
use yii\helpers\Html;
?>

<?php //表单:Html::beginForm(提交地址,提交方法,属性数组);?>

$form = ActiveForm::begin([
    &#39;action&#39; => [&#39;test/getpost&#39;],
    &#39;method&#39;=>&#39;post&#39;,
    ]); ?>

<?=Html::beginForm(&#39;&#39;,&#39;post&#39;,[&#39;id&#39;=>&#39;form&#39;,&#39;class&#39;=>&#39;form&#39;,&#39;data&#39;=>&#39;myself&#39;]);?>

<?php //(二)输入框:Html::input(类型,name值,默认值,属性数组;)?>

<?=Html::input(&#39;text&#39;,&#39;test&#39;,&#39;&#39;,[&#39;class&#39;=>&#39;form-control&#39;,&#39;placeholder&#39;=>&#39;hehe&#39;])->hint(&#39;Please enter your test&#39;)->label(&#39;Name&#39;);?>
<?=Html::input(&#39;email&#39;,&#39;email&#39;,&#39;admin@admin.com&#39;,[&#39;class&#39;=>&#39;form-control&#39;]);?>

<?=Html::input(&#39;password&#39;,&#39;pwd&#39;,&#39;&#39;,[&#39;class&#39;=>&#39;form-control&#39;]);?>
<?Html::input(&#39;hidden&#39;,&#39;hidden&#39;,&#39;&#39;,[&#39;class&#39;=>&#39;form-control&#39;]);?>

<hr/>

<?php //Html::表单类型input(name值,默认值,属性数值);?>

<?=Html::textInput(&#39;test&#39;,&#39;hehe&#39;,[&#39;class&#39;=>&#39;form-control&#39;]);?>
<?=Html::textInput(&#39;email&#39;,&#39;admin@admin.com&#39;,[&#39;class&#39;=>&#39;form-control&#39;]);?>

<?Html::passwordInput(&#39;pwd&#39;,&#39;&#39;,[&#39;class&#39;=>&#39;form-control&#39;]);?>
<?Html::hiddenInput(&#39;hidden&#39;,&#39;&#39;,[&#39;class&#39;=>&#39;form-control&#39;]);?>
<hr/>
<?php //(三) 文本域 Html::textarea()?>
<?=Html::textarea(&#39;area&#39;,&#39;&#39;,[&#39;class&#39;=>&#39;form-control&#39;,&#39;row&#39;=>&#39;3&#39;]);?>

<hr/>

<?php //单选按钮 Html::checkbox(name值,是否选中,属性数组)?>
<?=Html::radio(&#39;sex&#39;,true,[&#39;class&#39;=>&#39;form-control&#39;]);?>

<?=Html::radioList(&#39;height&#39;,&#39;1&#39;,[&#39;1&#39;=>&#39;160&#39;,&#39;2&#39;=>&#39;170&#39;,&#39;3&#39;=>&#39;180&#39;],[&#39;class&#39;=>&#39;form-control&#39;]);?>
<?php //复选框?>
<?=Html::checkbox(&#39;haha&#39;,true,[&#39;class&#39;=>&#39;form-control&#39;]);?>
<?php //复选框列表?>
<?=Html::checkboxList(&#39;xixi&#39;,&#39;1&#39;,[&#39;1&#39;=>&#39;160&#39;,&#39;2&#39;=>&#39;170&#39;,&#39;3&#39;=>&#39;180&#39;],[&#39;class&#39;=>&#39;form-control&#39;]);?>

<?php //下拉列表?>
<?=Html::dropDownList(&#39;list&#39;,&#39;2&#39;,[&#39;1&#39;=>&#39;160&#39;,&#39;2&#39;=>&#39;170&#39;,&#39;3&#39;=>&#39;180&#39;],[&#39;class&#39;=>&#39;form-control&#39;])?>

<?=Html::label(&#39;显示的&#39;,&#39;test&#39;,[&#39;style&#39;=>&#39;color:#ff0000&#39;]);?>
<hr/>
<?php //上传控件?>
<?=Html::fileInput(&#39;img&#39;,null,[&#39;class&#39;=>&#39;btn btn-default&#39;]);?>
<hr/>
<?php //按钮?>
<?=Html::button(&#39;普通按钮&#39;,[&#39;class&#39;=>&#39;btn btn-primary&#39;]);?>

<?=Html::submitButton(&#39;提交按钮&#39;,[&#39;class&#39;=>&#39;btn btn-primary&#39;]);?>

<?=Html::resetButton(&#39;重置按钮&#39;,[&#39;class&#39;=>&#39;btn btn-primary&#39;]);?>

<?=Html::endForm()?>
Copy after login


##Text box: textInput(); Password box :passwordInput();
Radio box:radio(),radioList();
Checkbox:checkbox(),checkboxList();
Dropdown box:dropDownList();
Hidden field :hiddenInput();
Text area: textarea(['rows'=>3]);

File upload:fileInput(); Submit button:submitButton();
Reset Button:resetButtun();

The following is a code example:

<?php
$form = ActiveForm::begin([&#39;action&#39; => [&#39;test/getpost&#39;],&#39;method&#39;=>&#39;post&#39;,]); ?>

<? echo $form->field($model, &#39;username&#39;)->textInput([&#39;maxlength&#39; => 20]) ?>

<? echo $form->field($model, &#39;password&#39;)->passwordInput([&#39;maxlength&#39; => 20]) ?>

<? echo $form->field($model, &#39;sex&#39;)->radioList([&#39;1&#39;=>&#39;男&#39;,&#39;0&#39;=>&#39;女&#39;]) ?>

<? echo $form->field($model, &#39;edu&#39;)->dropDownList([&#39;1&#39;=>&#39;大学&#39;,&#39;2&#39;=>&#39;高中&#39;,&#39;3&#39;=>&#39;初中&#39;], [&#39;prompt&#39;=>&#39;请选择&#39;,&#39;style&#39;=>&#39;width:120px&#39;]) ?>

<? echo $form->field($model, &#39;file&#39;)->fileInput() ?>

<? echo $form->field($model, &#39;hobby&#39;)->checkboxList([&#39;0&#39;=>&#39;篮球&#39;,&#39;1&#39;=>&#39;足球&#39;,&#39;2&#39;=>&#39;羽毛球&#39;,&#39;3&#39;=>&#39;乒乓球&#39;]) ?>

<? echo $form->field($model, &#39;info&#39;)->textarea([&#39;rows&#39;=>3]) ?>

<? echo $form->field($model, &#39;userid&#39;)->hiddenInput([&#39;value&#39;=>3]) ?>

<? echo Html::submitButton(&#39;提交&#39;, [&#39;class&#39;=>&#39;btn btn-primary&#39;,&#39;name&#39; =>&#39;submit-button&#39;]) ?>

<? echo Html::resetButton(&#39;重置&#39;, [&#39;class&#39;=>&#39;btn btn-primary&#39;,&#39;name&#39; =>&#39;submit-button&#39;]) ?>

<?php ActiveForm::end(); ?>
Copy after login
The above is all the content of this chapter, I hope it will bring you help.

Related recommendations:

How to load the verification code function that comes with Yii

Detailed explanation of the method of leaving the current page after adding, deleting, modifying and checking in Yii2

Using Yii form model and submitting form data in array form_PHP tutorial

The above is the detailed content of form in Yii framework. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement page jump after PHP form submission How to implement page jump after PHP form submission Aug 12, 2023 am 11:30 AM

How to implement page jump after PHP form submission [Introduction] In web development, form submission is a common functional requirement. After the user fills out the form and clicks the submit button, the form data usually needs to be sent to the server for processing, and the user is redirected to another page after processing. This article will introduce how to use PHP to implement page jump after form submission. [Step 1: HTML Form] First, we need to write a page containing a form in an HTML page so that users can fill in the data that needs to be submitted.

How to handle user rights management in PHP forms How to handle user rights management in PHP forms Aug 10, 2023 pm 01:06 PM

How to handle user rights management in PHP forms With the continuous development of web applications, user rights management is one of the important functions. User rights management can control users' operating rights in applications and ensure the security and legality of data. In PHP forms, user rights management can be implemented through some simple code. This article will introduce how to handle user rights management in PHP forms and give corresponding code examples. 1. Definition and management of user roles First of all, defining and managing user roles is a matter of user rights.

How to use JavaScript to implement real-time verification of the input box content of a form? How to use JavaScript to implement real-time verification of the input box content of a form? Oct 18, 2023 am 08:47 AM

How to use JavaScript to implement real-time verification of the input box content of a form? In many web applications, forms are the most common way of interaction between users and the system. However, the content entered by the user often needs to be validated to ensure the accuracy and completeness of the data. In this article, we will learn how to use JavaScript to implement real-time verification of the content of the form's input box and provide specific code examples. Creating the form First we need to create a simple table in HTML

How to use JavaScript to realize the automatic prompt function of the input box content of the form? How to use JavaScript to realize the automatic prompt function of the input box content of the form? Oct 20, 2023 pm 04:01 PM

How to use JavaScript to realize the automatic prompt function of the input box content of the form? Introduction: The automatic prompt function of the form input box content is very common in web applications. It can help users quickly enter the correct content. This article will introduce how to use JavaScript to achieve this function and provide specific code examples. Create the HTML structure First, we need to create an HTML structure that contains the input box and the auto-suggestion list. You can use the following code: &lt;!DOCTYP

PHP form processing: form data query and filtering PHP form processing: form data query and filtering Aug 07, 2023 pm 06:17 PM

PHP form processing: form data query and filtering Introduction In Web development, forms are an important way of interaction. Users can submit data to the server through forms for further processing. This article will introduce how to use PHP to process the query and filter functions of form data. Form design and submission First, we need to design a form that includes query and filter functions. Common form elements include input boxes, drop-down lists, radio buttons, check boxes, etc., which can be designed according to specific needs. When the user submits the form, the data will be sent to POS

How to use HTML, CSS and jQuery to realize the advanced function of automatic saving of forms How to use HTML, CSS and jQuery to realize the advanced function of automatic saving of forms Oct 28, 2023 am 08:20 AM

How to use HTML, CSS and jQuery to implement the advanced function of automatic saving of forms. Forms are one of the most common elements in modern web applications. When users enter form data, how to implement the automatic saving function can not only improve the user experience, but also ensure data security. This article will introduce how to use HTML, CSS and jQuery to implement the automatic saving function of the form, and attach specific code examples. 1. Structure of HTML form. Let’s first create a simple HTML form.

Tips for using Laravel form classes: ways to improve efficiency Tips for using Laravel form classes: ways to improve efficiency Mar 11, 2024 pm 12:51 PM

Forms are an integral part of writing a website or application. Laravel, as a popular PHP framework, provides rich and powerful form classes, making form processing easier and more efficient. This article will introduce some tips on using Laravel form classes to help you improve development efficiency. The following explains in detail through specific code examples. Creating a form To create a form in Laravel, you first need to write the corresponding HTML form in the view. When working with forms, you can use Laravel

How to create a form with a floating prompt using HTML, CSS and jQuery How to create a form with a floating prompt using HTML, CSS and jQuery Oct 25, 2023 am 10:48 AM

How to create a form with floating prompts using HTML, CSS and jQuery In modern web design, forms are one of the indispensable components. In order to improve user experience, we often need to add some floating prompts to the form to guide users to fill in the form correctly. This article will introduce how to use HTML, CSS and jQuery to create a form with floating prompts, and provide specific code examples. First, we need to create the HTML form. In the form we need to add some input fields, and

See all articles