Skip to content

Instantly share code, notes, and snippets.

@esedor
Created November 11, 2011 00:25
Show Gist options
  • Save esedor/1356731 to your computer and use it in GitHub Desktop.
Save esedor/1356731 to your computer and use it in GitHub Desktop.
Querying MongoDB in PHP
$collection = $db->Spells;
$collection->insert(array('name' => 'Blast', 'level' => 2));
$collection->update(array('name' => 'Blast'),
array('$set' => array('flavortext' => 'FWOOM!')));
$resultcursor = $collection->find(array('level' => 2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment