I often need to create html admin interfaces to administer data in tables. In other words, a page that lists all the records and lets you step through multiple pages of records, and perhaps sort or search them, along with the ability to add or delete a record, or update an existing one. Basic stuff.
I do not like to use big frameworks that include dozens of files and force you to code in a particular way, but prefer to use good individual classes as I need them. But I've never found a neat way to make this kind of admin interface. I've been rolling-my-own with a combination of jquery, the jquery datatables extension, and my own PHP functions. However, I would prefer to use a well maintained complete solution or at least a good PHP class. Anyone know of anything suitable, or have suggestions?