在我的应用程序中,我有表单,访问者可以选择任何城市以转到与所选值相关的另一个页面。
所以我创建了我的代码,但问题数据没有发送。
数据是城市id,我在篡改数据中测试过,没有发送数据,如何解决这个问题并在get方法中发送数据
模型:
public function events_by_city(){
return CHtml::listData(Events::model()->findAll("start >=now() and active=1"),'city','city0.ecity');
}
控制器 :
//////// start upcoming related to city
public function actionUpcomingcity(){
if(isset($_GET['city'])){
$city=intval($_GET['city']);
$courses=Courses::model()->findAll(" course_id in (select course_id from ict_events where start >=now() and city=$city and active=1 ) ",array('distinct'=>true,
));
$this->pageTitle=" Events";
$this->layout='rsidebar';
$this->render('upcoming_by_city',array('courses'=>$courses));
}
else{
echo " No number ";
}
}
看法 :
<?php
CHtml::form();
$model= new Events;
echo chtml::activeDropDownList($model,'city',$model->events_by_city(),array('prompt'=>'استعراض الأحداث التدريبية ',"submit"=>array("site/upcomingcity",'city'=>$model->city)));
CHtml::endForm();
?>