yii中頁面跳轉與傳值:
1、在同一個Controller中頁面跳轉
$this->render('view页面',array('参数'=>'值')); $this->render('news',array('result'=>'123','result1'=>'456'));
url重定向
##$this->redirect(array('action方法')); $this->redirect(array('getnews','id'=>1,,,,));