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),…

MongoDB PHP 7 CRUD Example

We know MongoDB is very popular open source, document based NoSQL database. In this tutorial I am going to create MongoDB PHP CRUD Example.  CRUD means Create, Read, Update and Delete operations. So basically you will add new data (create), fetch data (read), edit existing data (update) and remove existing data (delete) from database.

Configure MongoDB with PHP 7 on Windows

Introduction This tutorial will show you how to configure MongoDB PHP 7 for XAMPP on Windows. XAMPP is an open source, easy to install Apache distribution containing PHP, Perl and MySQL. It’s very easy to install after downloading the Windows exe inataller file. MongoDB is one of the widely used NoSQL(Not only SQL) database in market today. MongoDB is a document database…