Download the PHP package supabase-php/supabase-client without Composer
On this page you can find all versions of the php package supabase-php/supabase-client. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download supabase-php/supabase-client
More information about supabase-php/supabase-client
Files in supabase-php/supabase-client
Informations about the package supabase-client

Supabase client for PHP:
- Realtime database, Storage, Authentication and many more.
- [ ] When you creating your supabase table, make sure RLS (Row Level Security) option be disable.
- [x] If RLS are enable maybe you getting some errors.
[!WARNING] if you push the code to production while Row-Level Security (RLS) is disabled, it can pose a security threat to your application. To secure your app, please enable Row-Level Security. Otherwise, write an Object-Oriented PDO connection with PostgreSQL.
Env config code:
Install
- Install Supabase client for our project.
- Than we are require supabase-client by composer.
Config
Supabase client for PHP configuration with your php project/web Apps.
if you did not have .env file so please create your .env file.
if you create already your .env file then you will be derclare your enviroment variables names.
getAllData()
if you want to get all recorded data from your table when you saved the data then used getAllData function.
getSingleData()
if you need a specifics data from specifics columns then you used getSingleData function.
postData()
if you want to save your data to your table then used postData function.
updateData()
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.
Then used updateData function.
deleteData()
if you want to Delete a specificed data from the table, then used deleteData function.
you needed the id number of table data.