├── README.md ├── api ├── barang.php └── index.php ├── db_rest.sql ├── sampleClient ├── clientDelete.php ├── clientGet.php ├── clientPost.php └── clientPut.php ├── sampleClientApp ├── bootstrap-3.3.51 │ ├── 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 ├── edit.php ├── hapus.php ├── index.php └── tambah.php ├── screenshot1_apiGet.png ├── screenshot2_apiGetDetail.png ├── screenshot3_clientGet.png ├── screenshot3_clientPost.png └── screenshot4_clientApp.PNG /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/README.md -------------------------------------------------------------------------------- /api/barang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/api/barang.php -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/api/index.php -------------------------------------------------------------------------------- /db_rest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/db_rest.sql -------------------------------------------------------------------------------- /sampleClient/clientDelete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClient/clientDelete.php -------------------------------------------------------------------------------- /sampleClient/clientGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClient/clientGet.php -------------------------------------------------------------------------------- /sampleClient/clientPost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClient/clientPost.php -------------------------------------------------------------------------------- /sampleClient/clientPut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClient/clientPut.php -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.css -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap.css -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap.css.map -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap.min.css -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/js/bootstrap.js -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/js/bootstrap.min.js -------------------------------------------------------------------------------- /sampleClientApp/bootstrap-3.3.51/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/bootstrap-3.3.51/js/npm.js -------------------------------------------------------------------------------- /sampleClientApp/edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/edit.php -------------------------------------------------------------------------------- /sampleClientApp/hapus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/hapus.php -------------------------------------------------------------------------------- /sampleClientApp/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/index.php -------------------------------------------------------------------------------- /sampleClientApp/tambah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/sampleClientApp/tambah.php -------------------------------------------------------------------------------- /screenshot1_apiGet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/screenshot1_apiGet.png -------------------------------------------------------------------------------- /screenshot2_apiGetDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/screenshot2_apiGetDetail.png -------------------------------------------------------------------------------- /screenshot3_clientGet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/screenshot3_clientGet.png -------------------------------------------------------------------------------- /screenshot3_clientPost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/screenshot3_clientPost.png -------------------------------------------------------------------------------- /screenshot4_clientApp.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marselsampe/PHP-REST-native/HEAD/screenshot4_clientApp.PNG --------------------------------------------------------------------------------