/**
  * Creates a new Tag model.
  * If creation is successful, the browser will be redirected to the 'view' page.
  * @return mixed
  */
 public function actionCreate()
 {
     $model = new Tag();
     if ($model->load(Yii::$app->request->post()) && $model->save()) {
         return $this->redirect(['view', 'id' => $model->id]);
     } else {
         return $this->render('create', ['model' => $model]);
     }
 }
 public function actionCreateoftag($first)
 {
     $model = new Tag();
     if ($model->load(Yii::$app->request->post())) {
         $model->first = $first;
         $model->commend = 0;
         if ($model->save()) {
             return $this->redirect(['indexoftag?TagSearch%5Bfirst%5D=' . $first]);
         } else {
             return $this->render('create_tag', ['model' => $model, 'first' => $first]);
         }
     } else {
         return $this->render('create_tag', ['model' => $model, 'first' => $first]);
     }
 }