[Codeigniter-users] 削除確認について

Back to archive index

牧尾竜一 ryuic****@jom*****
2008年 7月 9日 (水) 10:50:10 JST


始めまして。JOMRです。
こちらに投稿ははじめてなので宜しくお願いします。

いきなりで申し訳ないのですが、

	function delete($cu_id = '')
	{
		$cu_id = (int) $cu_id;
		$delete = (int) $this->input->post('delete');
		
		$this->db->where('cu_id', $cu_id);
		$query = $this->db->get('customer');

		if ($delete == 1)
		{
		
			$data['cu_id']		= $row->cu_id;
			$data['cu_name']	= $row->cu_name;
			$data['cu_kana']	= $row->cu_kana;
			$data['cu_tel']		= $row->cu_tel;
			$data['cu_fax']		= $row->cu_fax;
			$data['cu_mail']	= $row->cu_mail;
			$data['biko']		= $row->biko;
			$data['datetime']	= $row->datetime;
			$this->load->view('customer_delete_confirm', $data);
		}
		else
		{
			$row = $query->row();

			$this->db->where('cu_id', $cu_id);
			$this->db->delete('customer');
			$this->load->view('customer_delete_finished');
		}
	}

というメソッドを作成したのですが削除確認の前にデータが削除されてしまいま
す。超初心者質問ですが宜しくお願いします。




Codeigniter-users メーリングリストの案内
Back to archive index