|
|
|
สอบถาม: การทำ selected ของ selectBox ใน Codeigniter 3 ครับ |
|
|
|
|
|
|
|
ลองใช้ smarty ดูไหมครับ
Code (PHP)
//controlller
$this->db->select('dmr_building_id,dmr_building_name');
$rs = $this->db->get('dmr_building');
data['selectbox'] = $rs->result_array();
$this->load->library('parser');
$this->parser->parse('test', $data);
Code (XML)
// application/views/test.php
<select name="dmr_building_id" class="form-control" >
<option selected="selected" value="-1"> --- กรุณาเลือกอาคาร --- </option>
{selectbox}
<option value="{dmr_building_id}" >{dmr_building_name}</option>
{/selectbox}
</select>
|
|
|
|
|
Date :
2015-08-01 20:40:53 |
By :
NewbiePHP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|