├── API_Restful ├── DB │ └── api_database.sql ├── api │ ├── .htaccess │ ├── client.class.php │ ├── connection │ │ └── connection.class.php │ ├── doc_img │ │ ├── delete.png │ │ ├── get.png │ │ ├── post.png │ │ └── put.png │ └── index.php └── index.php └── README.md /API_Restful/DB/api_database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/DB/api_database.sql -------------------------------------------------------------------------------- /API_Restful/api/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/.htaccess -------------------------------------------------------------------------------- /API_Restful/api/client.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/client.class.php -------------------------------------------------------------------------------- /API_Restful/api/connection/connection.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/connection/connection.class.php -------------------------------------------------------------------------------- /API_Restful/api/doc_img/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/doc_img/delete.png -------------------------------------------------------------------------------- /API_Restful/api/doc_img/get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/doc_img/get.png -------------------------------------------------------------------------------- /API_Restful/api/doc_img/post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/doc_img/post.png -------------------------------------------------------------------------------- /API_Restful/api/doc_img/put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/doc_img/put.png -------------------------------------------------------------------------------- /API_Restful/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/api/index.php -------------------------------------------------------------------------------- /API_Restful/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/API_Restful/index.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lflimeira/PHP_API/HEAD/README.md --------------------------------------------------------------------------------