├── LICENSE ├── README.md ├── atualizar.php ├── atualizarbd.php ├── busca.php ├── busca_resultados.php ├── cabecalho.php ├── conexao.php ├── css ├── bootstrap.min.css └── style.css ├── excluir.php ├── excluirbd.php ├── fonts └── glyphicons-halflings-regular.ttf ├── funcoes.php ├── imagens ├── ajax-loader.gif ├── delete.png ├── grid.png ├── insert.png └── update.png ├── index.php ├── inserir.php ├── inserirbd.php ├── js └── jquery.min.js ├── leiame.txt ├── paginacao.php ├── rodape.php └── scripts ├── clientes_my.sql ├── clientes_pg.sql └── leiame.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/README.md -------------------------------------------------------------------------------- /atualizar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/atualizar.php -------------------------------------------------------------------------------- /atualizarbd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/atualizarbd.php -------------------------------------------------------------------------------- /busca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/busca.php -------------------------------------------------------------------------------- /busca_resultados.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/busca_resultados.php -------------------------------------------------------------------------------- /cabecalho.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/cabecalho.php -------------------------------------------------------------------------------- /conexao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/conexao.php -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/css/style.css -------------------------------------------------------------------------------- /excluir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/excluir.php -------------------------------------------------------------------------------- /excluirbd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/excluirbd.php -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /funcoes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/funcoes.php -------------------------------------------------------------------------------- /imagens/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/imagens/ajax-loader.gif -------------------------------------------------------------------------------- /imagens/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/imagens/delete.png -------------------------------------------------------------------------------- /imagens/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/imagens/grid.png -------------------------------------------------------------------------------- /imagens/insert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/imagens/insert.png -------------------------------------------------------------------------------- /imagens/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/imagens/update.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/index.php -------------------------------------------------------------------------------- /inserir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/inserir.php -------------------------------------------------------------------------------- /inserirbd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/inserirbd.php -------------------------------------------------------------------------------- /js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/js/jquery.min.js -------------------------------------------------------------------------------- /leiame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/leiame.txt -------------------------------------------------------------------------------- /paginacao.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/paginacao.php -------------------------------------------------------------------------------- /rodape.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/rodape.php -------------------------------------------------------------------------------- /scripts/clientes_my.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/scripts/clientes_my.sql -------------------------------------------------------------------------------- /scripts/clientes_pg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/scripts/clientes_pg.sql -------------------------------------------------------------------------------- /scripts/leiame.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ribafs/auto-crud/HEAD/scripts/leiame.txt --------------------------------------------------------------------------------