77![ GitHub Release] ( https://img.shields.io/github/v/release/Ashishkumbhar01/supabase-php?style=for-the-badge )
88![ Packagist Downloads] ( https://img.shields.io/packagist/dt/supabase-php/supabase-client?style=for-the-badge&logo=composer )
99
10- Supabase client for PHP: Realtime database, Storage, Authentication and many more.
11- When you creating your supabase table, make sure RLS (Row Level Security) option be [ ×] disable.
12- If RLS are enable [ ✓] maybe you getting some error so you need to use ` Auth class ` .
10+ Supabase client for PHP:
11+ - Realtime database, Storage, Authentication and many more.
12+ - When you creating your supabase table, make sure RLS (Row Level Security) option be [ ×] disable.
13+ - If RLS are enable [ ✓] maybe you getting some error so you need to use ` Auth class ` .
1314Auth class coming soon.
1415
1516### ` Install `
@@ -20,7 +21,7 @@ Auth class coming soon.
2021composer require supabase-php/supabase-client
2122```
2223
23- ### ` Config `
24+ ### Config
2425Supabase client for PHP configuration with your php project/web Apps.
2526
2627``` php
@@ -54,23 +55,23 @@ SB_URL=https://rurtighghurtuhouger.supabase.co
5455SB_API_KEY=utertu895tyut8trrvt8rtu8mutt84r548t894v98v5vtt6ut54uu85tu
5556```
5657
57- ### ` getAllData `
58+ ### ` getAllData() `
5859if you want to get all recorded data from your table when you saved the data then used ` getAllData ` function.
5960
6061``` php
6162$data = $client->getAllData('table name');
6263print_r($data);
6364```
6465
65- ### ` getSingleData `
66+ ### ` getSingleData() `
6667if you need a specifics data from specifics columns then you used ` getSingleData ` function.
6768
6869``` php
6970$data = $client->getSingleData('table name', 'column name');
7071print_r($data);
7172```
7273
73- ### ` postData `
74+ ### ` postData() `
7475if you want to save your data to your table then used ` postData ` function.
7576
7677``` php
@@ -83,7 +84,7 @@ $data = [
8384$client->postData('table name', $data);
8485```
8586
86- ### ` updateData `
87+ ### ` updateData() `
8788if you thinks something to be wrong or outdated so you will be changing that particular value from particular columns and also you updating all the data.
8889Then used ` updateData ` function.
8990
@@ -97,27 +98,27 @@ $data = [
9798$client->updateData('table name', 'id number', $data);
9899```
99100
100- ### ` deleteData `
101+ ### ` deleteData() `
101102if you want to Delete a specificed data from the table, then used ` deleteData ` function.
102103you needed the id number of table data.
103104
104105``` php
105106$client->deleteData('table name', 2 //id);
106107```
107108
108- ### ` Pagination `
109+ ### ` Pagination() `
109110
110111``` php
111112$client->pages('table name');
112113```
113114
114- ### ` Filtering `
115+ ### ` Filtering() `
115116
116117```
117118$client->filter('table name', 1);
118119```
119120
120- ### ` Matching `
121+ ### ` Matching() `
121122
122123``` php
123124$data = [
@@ -128,9 +129,9 @@ $data = [
128129$client->matchs('table name', $data);
129130```
130131
131- ### ` Authentication `
132+ ### Authentication
132133* Auth Class coming soon.
133134
134135
135- ### ` Storage `
136+ ### Storage
136137* storage class coming soon.
0 commit comments