我有兩個表:1.以學生領域是 - (studentid,studentname,批次) 2.分批領域是 - (batchid,batchname)如何填充從數據庫下拉列表中的笨?
我想填充從外地下拉列表「batchname 「(從表中‘批量’),並具有基於現場選擇時將batchName」批量」(從表‘學生’)
我的控制器 -
function update($id){
$this->load->model('mod_studentprofile');
$data['query']= $this->mod_studentprofile->student_get($id); //to retrieve information from the table "STUDENT"
$data['query']= $this->mod_studentprofile->batch_get();
$data['main_content']='update_studentprofile';
$this->load->view('includes/template',$data);
}
我的模型 -
function batch_get()
{
$query = $this->db->get('batch');
return $query->result();
}
現在
,我無法弄清楚如何填充下拉列表中的「查看」。你能否幫我解決這個問題?
在此先感謝。