我有一个表名“类别”,其中包含(cat_id、名称、描述)。我可以毫无问题地插入、检索和删除。但是当我更新我的类别时,我的数据库中没有插入任何数据。我检查了我的桌子,结果什么也没有。
POST 模型“Category_Model 扩展 CI_Model”:
public function custom_query($data)
{
$q = $this->db->query($data);
return $q;
}
POST 控制器“类别扩展 CI_Controller”:
public function edit_category()
{
$data['title'] = "Edit Category Page";
$this->load->view('edit_category', $data);
}
public function update_category()
{
$id = $this->input->post('cat_id'); // I try $id = $this->uri->segment(3); but no result
$name = $this->input->post('name');
$desc = $this->input->post('description');
$this->post_model->custom_query("update category set cat_name='".$name."', description='".$desc."' where cat_id='".$id."'"); // when I delete 'where cat_id='".$id."'' clause, all my records were changing/updating
// I change to $this->db->where('cat_id', $id); $this->db->update('category'), but no result.
redirect ('category/view_categories');
}
这是我的编辑类别视图:
<form action="<?php echo base_url(); ?>category/update_category" method="POST">
<fieldset>
<legend>Edit Category</legend>
<label for="cat">Name :</label>
<input type="text" name="name"/>
<label for="desc">Descriptions :</label>
<textarea name="description" cols="40" rows="2"></textarea>
<input type="submit" value="Update">
</fieldset>
</form>
请任何人告诉我我的代码有什么问题?预先感谢
此致。
*注意:我将“数据库”放在自动加载配置中。