<slide>
<title>Inserting data</title>

<example><![CDATA[
<?php
$m = new MongoClient;

$m->dbname->steps->insert( [
        'person' => 'derickr',
        'steps_made' => [
                '20140201' => 10800,
        ]
] );
?>]]>
</example>

<blurb>No schema, and you also don't have to create a database or collection</blurb>
</slide>
