What is the best PHP crud class? #crud
Edit
by abdullah sadiq - 5 years ago (2020-02-24)
Manage and display staff details from database
| I am looking for a CRUD solution to access staff records in database and display detail pages.
|
Ask clarification
2 Recommendations
MySQL Class Generator: Generate classes to access MySQL as objects
This package can automatically generate PHP classes from MySQL tables.
It can access a given MySQL database and retrieve schema tables and fields.
For each table, it generates a class that uses object-oriented programming logic to provide methods for accessing, reading, and writing its records.
| by Saro Carvello package author 515 - 4 years ago (2020-09-27) Comment
You van try this. |
PHP CRUD Library Trait: Manipulate database table records using a trait
This package can manipulate database table records using a trait.
It provides traits that can establish database connections and perform CRUD operations with any table in the database that was connected. Currently it can:
- Insert table records using an array of values
- Retrieve a limited range of table records
- Search for table records that match a condition
- Delete a given table record
- Update table records that match a condition
- Retrieve one table record that matches a condition
- Count table records that match a condition
| by Manuel Lemos 26695 - 5 years ago (2020-02-26) Comment
You may want to try this trait. It provides a general solution for implementing CRUD classes that you can use to create your own classes to manage database records in one or more database tables.
It does not display the actual database records on a page but you can implement that in a real class that does all you need according to your presentation preferences for your application. |