appwrite/app/sdks/php/docs/examples/database/create-document.md

15 lines
240 B
Markdown
Raw Normal View History

2019-05-09 06:54:39 +00:00
<?php
use Appwrite\Client;
use Appwrite\Services\Database;
$client = new Client();
$client
2019-10-01 18:10:33 +00:00
->setProject('')
->setKey('')
2019-05-09 06:54:39 +00:00
;
$database = new Database($client);
2019-10-21 17:15:27 +00:00
$result = $database->createDocument('[COLLECTION_ID]', '{}', [], []);