Related questions
MongoDB and CodeIgniter
Can anyone assist in pointing me to a tutorial, library, etc. that will allow me to work with MongoDB from CodeIgniter?
Find a document with ObjectID in mongoDB
When I inserted some documents into a collection (without an ObjectID) mongoDB adds its own ObjectIDs.
I want to query a document by its unique ObjectID.
$db->collection_name->find(array('_id'=>'4e49fd8269fd873…
How to query mongo in php?
So I've got this simple login function that is trying to match email address with a password in the database and compare it with the user entered data via form.
function login($email, $password){
$m = new Mongo("localhost");
$m->…