【发布时间】:2016-12-10 02:37:35
【问题描述】:
我想从我选择名称作为输入值的 mysql 表中选择列。在我看来,必须选择列名作为多个输入字段。在此选择选项中,值等于数据库中我的“pass_due”表中的列名。
<form id="" name=" Passdue " action="<?=base_url('index.php/Passdue_ctrl/select')?>" method="post">
<div >
<input class="date-picker" id="report_date" name="report_date" value="" placeholder="Select Date"/>
<select multiple="" class="chzn-select" id=" " data-placeholder="Select sections " name="table_feilds">
<option value="" />
<option value="below_1" /> Below month
<option value="month_1_3" /> Month 1-3
<option value="month_3_6" /> Month 3-6
<option value="month_6_9" /> Month 6-9
<option value="over_9" /> Over 9 month
</select>
</div>
<div>
<button type="submit" class="btn btn-mini btn-info">Submit</button>
<button type="reset" id="reset" class="btn btn-mini btn-info">Reset</button>
</div>
</form>
这是我的控制器中的功能
Function select (){
$fld_name =$this->input->post('table_feilds');
$reportdate=$this->input->post('report_date');
$report=$this->Passdue_model->get_report_part($fld_name,$reportdate);
If($report){
$this->data['report_part']=$report;
$this->data['fld_name']=$fld_name;
$this->load->view('Passdue_other_view',$this->data);
}
}
在我的模型中是这样的。
function get_report_part1($fld_name,$reportdate)
{
$this->db->select($fld_name);
$this->db->from(‘pass_due’);
$this->db->where('fld_actORinact_date <=',$reportdate);
$query = $this->db->get();
if($query){
return $query->result();
}
}
当我运行此代码时,它会从表中选择所有列,而不仅仅是选定的列。它还显示错误为 为 foreach() 提供的参数无效。
【问题讨论】:
-
你能在评论中回显查询并粘贴吗?使用 echo $this->db->last_query();
标签: php mysql codeigniter