PHP code example of supabase-php / supabase-client

1. Go to this page and download the library: Download supabase-php/supabase-client 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/ */

    

supabase-php / supabase-client example snippets


use Supabase\Functions as Supabase;

// autoload the supabase class
ENV['SB_APIKEY']
];

$client = new Supabase($config['url'], $config['apikey']);

$data = $client->getAllData('table name');
print_r($data);

$data = $client->getSingleData('table name', 'column name');
print_r($data);

// posted data
$data = [
  'name' => 'PHP',
  'version' => '8.3'
];

$client->postData('table name', $data, 'id');
// 3rd option on_conflict

// updated data
$data = [
  'name' => 'PHP',
  'version' => '8.4'
];

$client->updateData('table name', 'id number', $data);

$client->deleteData('table name', 2 //id);

$client->pages('table name');

$data = [
  'name' => 'PHP',
  'version' => '8.4'
];

$client->matchs('table name', $data);
bash
composer ds old version
composer