コード例 #1
0
 /**
  * Creates a new model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  */
 public function actionCreate()
 {
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['HeadCategories'])) {
         $model = new HeadCategories();
         $model->attributes = $_POST['HeadCategories'];
         $model->id_name = "id-" . str_replace(" ", "-", $_POST['HeadCategories']['name']);
         $model->category = CategoriesMain::model()->findByPk($_POST['HeadCategories']['id_mc'])->name;
         if ($model->save()) {
             echo "sukses";
         } else {
             print_r($model->getErrors());
         }
         // $this->redirect(array('view','id'=>$model->id));
     }
     // $this->render('create',array(
     // 'model'=>$model,
     // ));
 }