0

我已经在这个 CodeIgniter Query 上工作了几个小时,但我无法找出问题所在。这是 SQL 表,其中包含数据和每个字段的名称。表名是 bodystyle。

制作 | 型号 | 身材

福特 | F-150 猛禽 4X4 乘员驾驶室 | 前驾驶室

宝马 | |

宝马 | | 35i |

宝马 | X5 | 35i

宝马 | X5 | 45i

宝马 | X5 | 35i

这是我使用 CodeIgniter 运行的查询

$make =$this->input->post('make');
    $model =$this->input->post('model'); 


    $this->db->select('bodystyle');
    $this->db->from('bodystyle');
    $this->db->where('make', $make);
    $this->db->where('model', $model);
    $records = $this->db->get('');

    $output = null; 
    foreach ($records->result() as $row){

    $output .=  $row->bodystyle . ', ';
    }

    echo $output;

$make = Ford

$model = Raptor 4X4 Crew Cab

我得到的输出是FRONT CAB, ,35i, 45i, 35i

你能看出它拉动所有体型的任何原因吗?

我希望它只是根据品牌和型号来拉它

4

1 回答 1

0

我看到 select 子句中的列名和表名都相同。确保您提供了正确的列名和表名。以下是编辑后的查询,请检查。

你的结果查询应该是

$records->result('array')

代替

$records->result()

尝试:

$make =$this->input->post('make');
$model =$this->input->post('model'); 


$this->db->select(column_name);
$this->db->from(table_name);
$this->db->where(array(
'make' => $make,
'model' => $model
));
$records = $this->db->get();
$result = $records->result('array');

print_r($result);
于 2013-06-18T03:13:41.583 回答