Skip to content

Instantly share code, notes, and snippets.

@jlamim
Created April 15, 2016 23:40
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/16e6219cdf81424adcc7c72928e8c4b0 to your computer and use it in GitHub Desktop.
Save jlamim/16e6219cdf81424adcc7c72928e8c4b0 to your computer and use it in GitHub Desktop.
Rotas - Criando um CRUD com CodeIgniter
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
$route['default_controller'] = 'Base';
$route['404_override'] = '';
$route['translate_uri_dashes'] = FALSE;
$route['salvar'] = "Base/Salvar";
$route['editar/(:num)'] = "Base/Editar/$1";
$route['atualizar'] = "Base/Atualizar";
$route['excluir/(:num)'] = "Base/Excluir/$1";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment