├── README.md ├── asset ├── css │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js └── js │ └── jquery.min.js ├── controller └── Music.php ├── db_latmusic.sql ├── images └── Insert.JPG ├── index.php ├── lib └── Database.php ├── model └── MusicModel.php └── view ├── music ├── detail.php ├── form.php └── list.php └── template.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/README.md -------------------------------------------------------------------------------- /asset/css/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap-theme.css -------------------------------------------------------------------------------- /asset/css/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /asset/css/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /asset/css/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /asset/css/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap.css -------------------------------------------------------------------------------- /asset/css/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap.css.map -------------------------------------------------------------------------------- /asset/css/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap.min.css -------------------------------------------------------------------------------- /asset/css/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /asset/css/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /asset/css/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /asset/css/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /asset/css/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /asset/css/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /asset/css/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/js/bootstrap.js -------------------------------------------------------------------------------- /asset/css/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/js/bootstrap.min.js -------------------------------------------------------------------------------- /asset/css/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/css/js/npm.js -------------------------------------------------------------------------------- /asset/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/asset/js/jquery.min.js -------------------------------------------------------------------------------- /controller/Music.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/controller/Music.php -------------------------------------------------------------------------------- /db_latmusic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/db_latmusic.sql -------------------------------------------------------------------------------- /images/Insert.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/images/Insert.JPG -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/index.php -------------------------------------------------------------------------------- /lib/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/lib/Database.php -------------------------------------------------------------------------------- /model/MusicModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/model/MusicModel.php -------------------------------------------------------------------------------- /view/music/detail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/view/music/detail.php -------------------------------------------------------------------------------- /view/music/form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/view/music/form.php -------------------------------------------------------------------------------- /view/music/list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/view/music/list.php -------------------------------------------------------------------------------- /view/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeofvenom/pdomvc/HEAD/view/template.php --------------------------------------------------------------------------------