yesamarcos

É só isso ...

Jan 18th, 2017
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. // Model Clientes ...
  2. public function getClientes(){
  3.    $this->db->select("*")->from("clientes");
  4.    return $this->db->get()->result_array();
  5. }
  6. // Controller Clientes ...
  7. public function listarClientes(){
  8.     $data['clientes'] = $this->clientes_model->getClientes();
  9.     $this->load->view('clientes', $data);
  10. }
  11. // View clientes ...
  12. foreach ($clientes as $cliente) {
  13.     echo $cliente['nome'];
  14. }
  15.  
  16. // Facebook
  17. https://www.facebook.com/groups/axitechinformatica
Advertisement
Add Comment
Please, Sign In to add comment