Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created April 28, 2016 03:42
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/577bc96d80a63f2e184a9ba65bc104b1 to your computer and use it in GitHub Desktop.
Save jlamim/577bc96d80a63f2e184a9ba65bc104b1 to your computer and use it in GitHub Desktop.
Importando dados CSV com CodeIgniter - Rotas
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = 'Base';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
$route['importar'] = "Base/ImportCsv";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment