Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 19:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/be443d7ef2bf95473b11fcbbe8b85a8c to your computer and use it in GitHub Desktop.
Save parzibyte/be443d7ef2bf95473b11fcbbe8b85a8c to your computer and use it in GitHub Desktop.
Cargar modelo en constructor de CodeIgniter 3 - https://parzibyte.me/blog/2018/10/11/ejemplo-controlador-codeigniter-3/
<?php
public function __construct(){
parent::__construct();
$this->load->model("VentaModel");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment