1. Go to this page and download the library: Download stevecomrie/baserow-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
stevecomrie / baserow-php example snippets
use \Scomrie\Baserow\Baserow;
$baserow = new Baserow([
'api_key' => 'API_KEY', // REQUIRED!!
// if you are self hosting your own instance of Baserow, use this parameter to
// point to the proper location on your server. defaults to the SaaS hosted endpoint.
'api_url' => 'https://api.baserow.io/api/database/rows/table'
// if set to true, will dump any errors with print_r() and exit on failure
'debug' => false,
// map of all tables & fields from auto-generated ###'s to human readable names
'table_map' => []
]);