How to create a web service via mongolab rest api for basic database operation using curl in php?

I am new to mongodb and mongolab.
Anyone can tell me how to access the mongolab database through curl in php and not through ajax. I want to create api as LOGIN, RESET_PASSWORD, RESIGTRATION. How to create over a web service.

I added https://support.mongolab.com/entries/20433053-REST-API-for-MongoDB for documentation.

Thanks in advance...

+4
source share
1 answer

If you are using a server with PHP support, I would recommend using the PHP MongoDB driver to connect. The MongoLab REST API is really intended for use in applications that would otherwise not need a server.

+2
source

All Articles