anyone please help me to retrieve the db data and how to view it in html table.is the coding i given is correct or not if not can you please say how i have to give. in order
Try this:
load->model('editcontent_model');
$this->load->helper('url');
$this->load->library('acl');
$data['result'] = $this->editcontent_model->get_contents();
$this->load->view('edit_content/edit_content', $data);
}
}
?>
Content
content; ?>
db->select('content');
$this->db->from('contents');
$query = $this->db->get();
return $result = $query->result();
}
}