An open API service indexing awesome lists of open source software.

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

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)

---