In most of the tutorials I found, you will learn how to use it on the command line or in your own web shell. I am looking for something that will show me how to actually deploy a site using it.
This is basically where MongoDB starts. It's not really at the MySQL or SQL Server level, where you click a few buttons and everything works magically.
The tutorials will start you on the command line so you can do basic CRUD (Create / Read / Update / Delete). Then you will need to find out the specific details for any language that you use on the web server (PHP, Ruby, C #, etc.).
There are tutorials to get you started (installing MongoDB on your server, installing drivers, etc.). But you must tell us which language you use in the back.
PHP has a ton of Getting Started documentation.
Here is a good link link . Here is one of the links with the shell base code . And here is a link with an extensive example .
You will probably find that the PHP code is very similar to the shell. Instead of { _id: 'bob'} and db->coll->find() instead of db.coll.find() you use array('_id' => 'bob') .
source share