Reputation: 13683
I want to make a php application but i have too many tables with different names.Is there an existing CRUD library that can help me edit one table at a time by pointing directly to the table via a url like: example.com/index/tablename
and editing the records.
Upvotes: 0
Views: 638
Reputation: 17762
Hmmm, maybe you should use a DBMS, like phpmyadmin? Otherwise, I have no idea how are you going to edit data thru an url, and what would the GUI look like.
Upvotes: 0
Reputation: 7575
you could give cakephp a go, the RAD development with bake could give you a simple crud app just typing a few commands in terminal. http://book.cakephp.org/view/1522/Code-Generation-with-Bake
Upvotes: 0
Reputation: 5662
If you are looking to directly edit the tables, it would be much easier (and safer) to use a dedicated tool such as phpmyadmin
Upvotes: 3