I am building a database of products and manufacturers. I already have the database layout done. I am looking for a simple CRUD class that will let me setup Manufacturers and Products and create the records quickly and easily. I have looked at ORM's but they all seem to be over kill for what I am looking for. Thanks
A:
Hard to say with so few informations...
CouchDB + PHPillow if you don't neccessarily need SQL - works quite nice, Zend_DB + (Sqlite|MySql|Postgress) otherwise ...
pagid
2010-07-11 21:45:12
That even looks like over kill. I am really just looking for the form and queries to be generated. Or if someone has a good tutorial for an ORM I wouldn't mind learning just the documentation is a bit over my head from what I have found.
willlangford
2010-07-11 22:01:17
+1
A:
Look into CakePHP. The code generation (or scaffolding) will get you a working CRUD interface in a few minutes.
Kalium
2010-07-12 03:33:36
Even though I was trying to avoid a big framework CakePHP seems to have done the job. Thanks
willlangford
2010-07-12 16:23:20