function addAction()
 {
     if ($this->getRequest()->isPost()) {
         //check condition return true click submit button
         $_data = $this->getRequest()->getPost();
         $_dbmodel = new Other_Model_DbTable_DbOtherinformation();
         try {
             if (isset($_data['save_new'])) {
                 $_dbmodel->addOtherinformation($_data);
                 Application_Form_FrmMessage::message("INSERT_SUCCESS");
             } else {
                 if (isset($_data['save_close'])) {
                     $_dbmodel->addOtherinformation($_data);
                     Application_Form_FrmMessage::Sucessfull("INSERT_SUCCESS", self::REDIRECT_URL . "/otherinformation/index");
                 }
             }
         } catch (Exception $e) {
             Application_Form_FrmMessage::message("INSERT_FAIL");
             $err = $e->getMessage();
             Application_Model_DbTable_DbUserLog::writeMessageError($err);
         }
     }
 }