Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created April 15, 2016 23:41
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 jlamim/47566d609192eb135fc6d16937ebed89 to your computer and use it in GitHub Desktop.
Save jlamim/47566d609192eb135fc6d16937ebed89 to your computer and use it in GitHub Desktop.
Libraries, helper e model - Criando um CRUD com CodeIgniter
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$autoload['packages'] = array();
$autoload['libraries'] = array('database','session','form_validation');
$autoload['drivers'] = array();
$autoload['helper'] = array('url');
$autoload['config'] = array();
$autoload['language'] = array();
$autoload['model'] = array('contatos_model');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment