希望我能正确解释这一点...
我正在使用 Codeigniter 的表单验证。如果我的表单将字符串 id 返回给控制器,我如何使用它来执行数据库查询并使用结果数组来执行更新...
那有意义吗?
function form($id) {
if ($this->form_validation->run('') == false) {
//...
}
else {
// Query database where strId = $this->input->post('strId')
// Put results into an array called $data
// Update database where id = $this->input->post('id')
$this->db->where('id', $this->input->post('id'));
$this->db->update('database', $data);
}
}