├── .DS_Store ├── README.md ├── banco.sql ├── classes ├── Crud.php ├── DB.php ├── Usuarios.php └── config.php ├── css ├── bootstrap-responsive.css ├── bootstrap-responsive.min.css ├── bootstrap.css └── bootstrap.min.css ├── img ├── glyphicons-halflings-white.png └── glyphicons-halflings.png ├── index.php └── js ├── bootstrap.js ├── bootstrap.min.js └── jQuery.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/README.md -------------------------------------------------------------------------------- /banco.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/banco.sql -------------------------------------------------------------------------------- /classes/Crud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/classes/Crud.php -------------------------------------------------------------------------------- /classes/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/classes/DB.php -------------------------------------------------------------------------------- /classes/Usuarios.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/classes/Usuarios.php -------------------------------------------------------------------------------- /classes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/classes/config.php -------------------------------------------------------------------------------- /css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/index.php -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewesteves/php-oo-praticando/HEAD/js/jQuery.js --------------------------------------------------------------------------------