Posted in REST

PHP REST API Multiple Files Upload

REST API Multiple Files Upload In this tutorial I am going to show you an example how to upload multiple files using REST (Representational State Transfer) API. I will also create a client program to upload multiple files through REST API. I am not using any Postman or SOAP UI tool to test the file upload functionality, so I am…

Continue Reading... PHP REST API Multiple Files Upload
Posted in REST

PHP REST API Single File Upload

REST API File Upload I am going to show you how to upload single file using REST API in PHP language. The full form of REST is Representational State Transfer. I will use POST method to upload the file. The REST API will get the file content from the client and will store the file content to a specified destination….

Continue Reading... PHP REST API Single File Upload
Posted in PHP REST

PHP Consume External REST APIs

Introduction In this PHP example, I am going to show you how to call external REST APIs in PHP programming. I am not going to build here any new REST API, but I will call or consume those REST APIs which are already available for testing purpose. But if you want to know then you can check my tutorial about…

Continue Reading... PHP Consume External REST APIs
Posted in MongoDB PHP REST

REST API CRUD Example in PHP and MongoDB

In this tutorial I am going to show an example on REST API CRUD example in PHP and MongoDB. We know MongoDB is very popular open source, document based, NoSQL database. In this tutorial I will create MongoDB PHP CRUD Example with RESTful API. CRUD means Create, Read, Update and Delete operations. So basically you will add new data (create),…

Continue Reading... REST API CRUD Example in PHP and MongoDB
Posted in Angular PHP REST

AngularJS PHP REST CRUD Example

In this tutorial we will see the integration of AngularJS with PHP REST. We are going to create CRUD application using PHP REST API on server side and AngularJS is encapsulated within html file on client side. Thus the client will communicate with server asynchronously using AngularJS $http service. Please read REST API CRUD Example in PHP, MySQL for server…

Continue Reading... AngularJS PHP REST CRUD Example