Skip to content

Commit a6ff707

Browse files
Merge pull request Ashishkumbhar01#18 from CodeWithSushil/master
Docs update
2 parents b42beac + c101567 commit a6ff707

File tree

1 file changed

+15
-14
lines changed

1 file changed

+15
-14
lines changed

README.md

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,10 @@
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`.
1314
Auth class coming soon.
1415

1516
### `Install`
@@ -20,7 +21,7 @@ Auth class coming soon.
2021
composer require supabase-php/supabase-client
2122
```
2223

23-
### `Config`
24+
### Config
2425
Supabase client for PHP configuration with your php project/web Apps.
2526

2627
```php
@@ -54,23 +55,23 @@ SB_URL=https://rurtighghurtuhouger.supabase.co
5455
SB_API_KEY=utertu895tyut8trrvt8rtu8mutt84r548t894v98v5vtt6ut54uu85tu
5556
```
5657

57-
### `getAllData`
58+
### `getAllData()`
5859
if 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');
6263
print_r($data);
6364
```
6465

65-
### `getSingleData`
66+
### `getSingleData()`
6667
if you need a specifics data from specifics columns then you used `getSingleData` function.
6768

6869
```php
6970
$data = $client->getSingleData('table name', 'column name');
7071
print_r($data);
7172
```
7273

73-
### `postData`
74+
### `postData()`
7475
if 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()`
8788
if 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.
8889
Then used `updateData` function.
8990

@@ -97,27 +98,27 @@ $data = [
9798
$client->updateData('table name', 'id number', $data);
9899
```
99100

100-
### `deleteData`
101+
### `deleteData()`
101102
if you want to Delete a specificed data from the table, then used `deleteData` function.
102103
you 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

Comments
 (0)