Veri_Model' i de lütfen

)
public function gallery_check($id)
{
return $this->db->where("website_id", $id)->order_by("id ASC")->get("website_gallery")->result();
}
public function product_check($id)
{
return $this->db->where("website_id", $id)->order_by("id ASC")->get("website_product")->result();
}
public function content_check($id)
{
return $this->db->where("website_id", $id)->get("website_content")->result();
}
public function form_check($id)
{
return $this->db->where("website_id", $id)->get("website_form")->result();
}