What is the best PHP crud class? #crud
Edit
by ahmed aabuzaid - 17 days ago (2016-03-26)
How to create CRUD with PHP
| I would like to know how to create CRUD interface with PHP. I want sample code. |
Ask clarification
1 Recommendation
Short Code CRUD: Perform CRUD operations on MySQL table records
| by Bharat Parmar package author 250 - 22 hours ago (2016-04-11) Comment This class can perform CRUD operations on MySQL table records.
It can perform several types of operations with records of a given MySQL table like:
- InsertRecord : Insert Record to database
- InsertMultipleRecord : Insert Multiple Records
- GetSingleRecord : Retrieve Single Record for Edit or View Action
- GetRecord: Get All or a limited number of Records with pagination
- UpdateRecord : Edit or Update Record Method
- DeleteRecord : Delete Record Method
- GetCustom : For results for arbitrary queries
The class can also generate HTML to display or update the table records like:
- PagiNation : Pagination Display
- UploadFile : Upload File
- DeleteFile : Delete File
- DateDifference : Date Difference
- RedirectPage : To Redirect Specific Pages
- EditLink : Edit Action Link
- StatusLink : Change active or inactive status Action Link
- DeleteLink : Delete Action Link
- SendMail : Send Mail method
- GetRandomString : Generate Random String
|