提交在yii中选择模型的下一条记录

时间:2014-09-17 09:19:18

标签: php yii model

我必须创建一个表单。此表单的内容取决于我必须选择的模型。在提交时,我必须保存用户输入并选择依赖模型的下一条记录,然后显示另一个表单。

控制器操作:

public function actionAddInfo($id){
    $model1 = new DonneeComplement;
    $Valeur = new ValeurFournie;
    $participant = Participant::model()->find('id_participant = ' . $id);

    $info = InfoComplementAAjouter::model()->find('id_evenement = ' . $participant->id_evenement);

    //Here I might save the submitted data and and find the next $info in the records
    render('addInfo', array('model' => $model1, 'valeur' => $Valeur, 'info' => $info));
}

有人可以帮我解决问题吗?

0 个答案:

没有答案