Example #1
0
 public function run()
 {
     $city = City::model()->findAll();
     $type = InvestType::model()->findAll();
     $aim = InvestAim::model()->findAll();
     $data = array('city' => $city, 'type' => $type, 'aim' => $aim);
     $this->render('evaluate', $data);
 }