1
0
Fork 0
mirror of synced 2024-09-12 15:47:12 +12:00
appwrite/app/sdks/php/docs/examples/database/get-collection.md

15 lines
221 B
Markdown
Raw Normal View History

2019-08-07 02:00:08 +12:00
<?php
use Appwrite\Client;
use Appwrite\Services\Database;
$client = new Client();
$client
setProject('')
setKey('')
;
$database = new Database($client);
$result = $database->getCollection('[COLLECTION_ID]');