https://github.com/asilvafx/firebase-sdk-php
PHP Firebase Realtime Database - NoSQL CRUD
https://github.com/asilvafx/firebase-sdk-php
crud database firebase php
Last synced: 4 months ago
JSON representation
PHP Firebase Realtime Database - NoSQL CRUD
- Host: GitHub
- URL: https://github.com/asilvafx/firebase-sdk-php
- Owner: asilvafx
- Created: 2024-12-14T16:50:51.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-12-16T09:25:34.000Z (6 months ago)
- Last Synced: 2024-12-28T01:18:21.841Z (6 months ago)
- Topics: crud, database, firebase, php
- Language: PHP
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP Firebase SDK NoSQL Realtime Database
This repository demonstrates how to interact with a database using simple CRUD (Create, Read, Update, Delete) operations in PHP. The examples provided showcase how to get table data, search for items, post new data, update existing data, and delete data.
## Table of Contents
- [Example Usage](#example-usage)
- [Get Table Data](#get-table-data)
- [Get Item Data by Search Query](#get-item-data-by-search-query)
- [Post New User Data](#post-new-user-data)
- [Get Item Key by Search Query](#get-item-key-by-search-query)
- [Update Existing User Data](#update-existing-user-data)
- [Delete User Data](#delete-user-data)---