/**
  * Updates a particular model.
  * If update is successful, the browser will be redirected to the 'view' page.
  * @param integer $id the ID of the model to be updated
  */
 public function actionRegister()
 {
     $model = new Pelanggantbl();
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['Pelanggantbl'])) {
         $model->attributes = $_POST['Pelanggantbl'];
         $model->save();
         $this->redirect(Yii::app()->homeUrl);
     }
     $this->render('register', array('model' => $model));
 }