Get Request Is Considered As Post

i have strange problem. i created a link .


<a href="/module/default/editEvent" style="font-size: 14px;">Edit Event</a>

and an action


public function actionEditEvent(){

      if(isset($_POST)){

          echo '<pre>';

          print_r($_POST);

          die;

      }

     $this->render('editEvent');

    }

when i click on link it prints blank array.

can anyone tell me reason for that?

any guidance will be highly appreciated

Hi hemc

the code "isset($_POST)" returns true either the request is get or post

replace that with


Yii::app()->request->isPostRequest