I have a small class of pre-made MySQL functions (for example a function ‘insert()’) where some params are passed and an insert is executed. This allows me to develop faster.
I was wondering if there is something done already, such as CodeIgniter’s one, but just a class that I can just include, without having to use a whole framework. Preferably PDO, PHP5, any really good one that you can recommend? I’ve been googling for a while but can’t find anything useful.
Easiest I have seen is NotORM. I guess you can’t get any easier than this:
You can use this tutorial to learn more.