├── LICENSE ├── README.md ├── assets ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── datepicker.min.css │ └── style.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ └── favicon.png └── js │ ├── DataTables │ ├── css │ │ └── dataTables.bootstrap.css │ └── js │ │ ├── dataTables.bootstrap.js │ │ └── jquery.dataTables.js │ ├── bootstrap-datepicker.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.min.js │ └── npm.js ├── config └── database.php ├── database.sql ├── form-tambah.php ├── form-ubah.php ├── index.php ├── proses-hapus.php ├── proses-simpan.php ├── proses-ubah.php ├── readme.txt ├── siswa.php └── tampil-data.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/bootstrap-theme.css -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/bootstrap.css -------------------------------------------------------------------------------- /assets/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/bootstrap.css.map -------------------------------------------------------------------------------- /assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /assets/css/datepicker.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/datepicker.min.css -------------------------------------------------------------------------------- /assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/css/style.css -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/img/favicon.png -------------------------------------------------------------------------------- /assets/js/DataTables/css/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/DataTables/css/dataTables.bootstrap.css -------------------------------------------------------------------------------- /assets/js/DataTables/js/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/DataTables/js/dataTables.bootstrap.js -------------------------------------------------------------------------------- /assets/js/DataTables/js/jquery.dataTables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/DataTables/js/jquery.dataTables.js -------------------------------------------------------------------------------- /assets/js/bootstrap-datepicker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/bootstrap-datepicker.min.js -------------------------------------------------------------------------------- /assets/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/bootstrap.js -------------------------------------------------------------------------------- /assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/jquery.min.js -------------------------------------------------------------------------------- /assets/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/assets/js/npm.js -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/config/database.php -------------------------------------------------------------------------------- /database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/database.sql -------------------------------------------------------------------------------- /form-tambah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/form-tambah.php -------------------------------------------------------------------------------- /form-ubah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/form-ubah.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/index.php -------------------------------------------------------------------------------- /proses-hapus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/proses-hapus.php -------------------------------------------------------------------------------- /proses-simpan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/proses-simpan.php -------------------------------------------------------------------------------- /proses-ubah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/proses-ubah.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/readme.txt -------------------------------------------------------------------------------- /siswa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/siswa.php -------------------------------------------------------------------------------- /tampil-data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indrasatya/crud-php-oop-mysqli/HEAD/tampil-data.php --------------------------------------------------------------------------------