├── README.md ├── api ├── create.php ├── delete.php ├── read.php ├── single_read.php └── update.php ├── class └── employees.php └── config └── database.php /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/README.md -------------------------------------------------------------------------------- /api/create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/api/create.php -------------------------------------------------------------------------------- /api/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/api/delete.php -------------------------------------------------------------------------------- /api/read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/api/read.php -------------------------------------------------------------------------------- /api/single_read.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/api/single_read.php -------------------------------------------------------------------------------- /api/update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/api/update.php -------------------------------------------------------------------------------- /class/employees.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/class/employees.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SinghDigamber/php-rest-api/HEAD/config/database.php --------------------------------------------------------------------------------