├── CRUD-db.sql ├── LICENSE ├── README.md ├── add.php ├── app.js ├── 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 ├── dbconfig.php ├── delete.php ├── docs ├── index.html ├── params.json └── stylesheets │ ├── github-light.css │ ├── normalize.css │ └── stylesheet.css ├── edit.php ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── index.html ├── js ├── bootstrap.js ├── bootstrap.min.js ├── jquery-2.2.0.min.js └── npm.js ├── update.php └── view.php /CRUD-db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/CRUD-db.sql -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/README.md -------------------------------------------------------------------------------- /add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/add.php -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/app.js -------------------------------------------------------------------------------- /css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap-theme.css -------------------------------------------------------------------------------- /css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap.css -------------------------------------------------------------------------------- /css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap.css.map -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /dbconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/dbconfig.php -------------------------------------------------------------------------------- /delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/delete.php -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/docs/params.json -------------------------------------------------------------------------------- /docs/stylesheets/github-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/docs/stylesheets/github-light.css -------------------------------------------------------------------------------- /docs/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/docs/stylesheets/normalize.css -------------------------------------------------------------------------------- /docs/stylesheets/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/docs/stylesheets/stylesheet.css -------------------------------------------------------------------------------- /edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/edit.php -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/js/bootstrap.js -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery-2.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/js/jquery-2.2.0.min.js -------------------------------------------------------------------------------- /js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/js/npm.js -------------------------------------------------------------------------------- /update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/update.php -------------------------------------------------------------------------------- /view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shindesharad71/CRUD-PHP-JQuery-AJAX/HEAD/view.php --------------------------------------------------------------------------------