Skip to content

Instantly share code, notes, and snippets.

@esedor
Created November 8, 2011 18:43
Show Gist options
  • Save esedor/1348686 to your computer and use it in GitHub Desktop.
Save esedor/1348686 to your computer and use it in GitHub Desktop.
New MongoDB Connection in PHP
// Add extension=mongo.so to your php.ini file.
$m = new Mongo('mongodb://user:pass@localhost:27017/dbname');
$db = $m->dbname;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment