public function actionCrear() { $ronda = new Ronda(); if (isset($_POST['Ronda'])) { $ronda->attributes = $_POST['Ronda']; if ($ronda->validate()) { if (!$ronda->save()) { Yii::app()->user->setFlash('mensaje', 'La ronda del ' . $ronda->fecha_inicio . ' al ' . $ronda->fecha_fin . ' no se pudo guardar'); } else { Yii::app()->user->setFlash('mensaje', 'La ronda del ' . $ronda->fecha_inicio . ' al ' . $ronda->fecha_fin . ' se guardó exitosamente'); $this->redirect($this->createUrl('view', array('id' => $ronda->getPrimaryKey()))); } } //if($preguntaForm->validate()) } //if(isset($_POST['Pregunta']))/**/ $this->render('crear', array('model' => $ronda)); }