├── README.md ├── config └── db.php ├── controller └── usernameController.php ├── index.php ├── model └── usernameModel.php ├── prueba.sql └── view ├── head ├── footer.php └── head.php └── username ├── create.php ├── delete.php ├── edit.php ├── index.php ├── show.php ├── store.php └── update.php /README.md: -------------------------------------------------------------------------------- 1 | # BOOTSTRAP-MVC-POO-PDO -------------------------------------------------------------------------------- /config/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/config/db.php -------------------------------------------------------------------------------- /controller/usernameController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/controller/usernameController.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/index.php -------------------------------------------------------------------------------- /model/usernameModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/model/usernameModel.php -------------------------------------------------------------------------------- /prueba.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/prueba.sql -------------------------------------------------------------------------------- /view/head/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/head/footer.php -------------------------------------------------------------------------------- /view/head/head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/head/head.php -------------------------------------------------------------------------------- /view/username/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/username/create.php -------------------------------------------------------------------------------- /view/username/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/username/delete.php -------------------------------------------------------------------------------- /view/username/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/username/edit.php -------------------------------------------------------------------------------- /view/username/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/username/index.php -------------------------------------------------------------------------------- /view/username/show.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/username/show.php -------------------------------------------------------------------------------- /view/username/store.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/username/store.php -------------------------------------------------------------------------------- /view/username/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimberghMorales/BOOTSTRAP-MVC-POO-PDO/HEAD/view/username/update.php --------------------------------------------------------------------------------