English 中文(简体)
1. 显示和验证表中没有的田地
原标题:Yii display and validation of fields not present in table

我是伊里的一个新奇。 我创建了一个网页,用户可以改变密码。

因此,我的变化 序 言

<div class="row">
    <?php echo $form->labelEx($model, oldpwd ); ?>
    <?php echo $form->textField($model, oldpwd ); ?>
    <?php echo $form->error($model, oldpwd ); ?>
</div>

<div class="row">
    <?php echo $form->labelEx($model, pwd ); ?>
    <?php echo $form->textField($model, pwd ); ?>
    <?php echo $form->error($model, pwd ); ?>
</div>

<div class="row">
    <?php echo $form->labelEx($model, pwd_repeat ); ?>
    <?php echo $form->passwordField($model, pwd_repeat ); ?>
    <?php echo $form->error($model, pwd_repeat ); ?>
</div>

现在,我显然正在犯错误,因为只有实地 p在桌旁,因此,就在模型中。 我是多国排雷中心框架的新鲜事,可以在这里利用一些帮助。 增 编

最佳回答

在你的模式中将其称为第一模式的财产。

public $old_pwd;
public $pwd;
public $pwd_repeat;

你们正在问这些特性的模范拉比。 实验室在模式中发挥作用。

public function attributeLabels()
{
    return array(
         old_pwd => Old Passw.... ,
                      .....same way for all those who are not already there.. 
    );
}

必要时在规则中宣布安全......

问题回答

在你的模型中添加以下一行:

public $old_pwd;  
public $pwd_repeat;

我们指示Yi将这个领域作为虚拟领域,而不是搜索数据库领域





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签