Skip to content

Latest commit

 

History

History
16 lines (14 loc) · 1.05 KB

README.md

File metadata and controls

16 lines (14 loc) · 1.05 KB

CRUD RESTful API with Pure PHP

Overview

This repository contains a CRUD RESTful API built with pure PHP without any frameworks. It's designed to provide a simple yet powerful interface for creating, reading, updating, and deleting resources.

Features

  • Create: Add new entries to your resource. create
  • Read All: Retrieve a list of all entries. read
  • Read Single: Fetch details of a single entry. read_single
  • Update: Modify an existing entry. update
  • Delete: Remove an entry from the resource. delete