diff --git a/README.md b/README.md index 0fbb5cd..f97cd5e 100644 --- a/README.md +++ b/README.md @@ -36,8 +36,10 @@ Example $document = array('someKey' => 'someValue'); $result = r\table("tablePhpTest")->insert($document) ->run($conn); - echo "Insert: $result\n"; - + echo "Insert:\n"; + print_r($result); +    echo "\n"; +     // How many documents are in the table? $result = r\table("tablePhpTest")->count()->run($conn); echo "Count: $result\n";