(cat_id、name、description)を含むテーブル名「Category」があります。問題なく挿入、取得、削除できます。しかし、カテゴリを更新すると、データベースにデータが挿入されません。テーブルを確認しましたが、結果は何もありません。
POST モデル "Category_Model extends CI_Model":
public function custom_query($data)
{
$q = $this->db->query($data);
return $q;
}
POST コントローラー「Category extends 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');
}
これが私のEDIT CATEGORYビューです:
<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>
私のコードの何が問題だったのか誰か教えてください。少し早いですがお礼を
よろしくお願いします。
*注: autoload config に「データベース」を入れました。