What is the best PHP CRUD system/libary?

by 10 replies
13
I need to do a bunch of CRUD for an upcoming project. I'll probably start it myself and then outsource it, but I want to pick the software stack.

Grocery CRUD seems very nice; however, I'm really not crazy about dragging in a framework.
#programming #crud #php #system or libary
  • I've been using PDO, (if I understand your question correctly).
    • [1] reply
    • I think we are miss-communicating. PDO looks like an abstraction layer for databases. I going to stick to the same database -MySQL .

      I need user interface Create, Read, Update and Delete. For Example: Auto PHP Codeigniter CRUD | Grocery CRUD but that uses the Codeignitor framework. I'd prefer to use an independent library.
      • [1] reply
  • If you are dragging in a framework, I recommend Yii:
    PHP Master | Build a CRUD App with Yii in Minutes

    If you are going to use EasyUI, I wouldn't use the mysql extension like they have in their examples. It is deprecated as of PHP 5.5. The manual recommendation is to use mysqli or PDO:
    PHP: Introduction - Manual

    I've used ODBC with mssql databases, but no personal experience with mysql and ODBC so I have no opinion on that one.

Next Topics on Trending Feed