Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Model Clientes ...
- public function getClientes(){
- $this->db->select("*")->from("clientes");
- return $this->db->get()->result_array();
- }
- // Controller Clientes ...
- public function listarClientes(){
- $data['clientes'] = $this->clientes_model->getClientes();
- $this->load->view('clientes', $data);
- }
- // View clientes ...
- foreach ($clientes as $cliente) {
- echo $cliente['nome'];
- }
- // Facebook
- https://www.facebook.com/groups/axitechinformatica
Advertisement
Add Comment
Please, Sign In to add comment