我有学生表格/添加和编辑由同一表格使用。
在编辑部分:表单填充数据库中的值。在提交表单时,它会显示验证消息。此时,表单显示db值而不是输入(更新)值。
在我的控制器中:
$model=new SubscriberindForm;
if(isset($_POST['SubscriberindForm'])) {
$Arr = $_POST['SubscriberindForm'];
$model->attributes=$_POST['SubscriberindForm'];
if($model->validate()){
// Insert or update code here
}
}
$this->render('addsubscriber',array('model'=>$model));
如何解决这个问题。