Hi,
Can anyone suggest me a good open source class which uses functions such as Insert, update using MySqli ?
Thanks
| SitePoint Sponsor |
Hi,
Can anyone suggest me a good open source class which uses functions such as Insert, update using MySqli ?
Thanks

You don't need any 3rd party classes as such because MySQLi in PHP is a class, see the following link.
PHP: Mysqli - Manual
Blog/Portfolio | Evolution Xtreme | DFG Design | DFG Hosting | CSS-Tricks | Stack Overflow | Paul Irish
Having lame problems with your code? Let us help by using a jsFiddle
@AnthonySterling: I'm a PHP developer, a consultant for oopnorth.com and the organiser of @phpne, a PHP User Group covering the North-East of England.
Why do you need a wrapper? MySQLi is easy enough to use. If you need specific added functions then why not just extend MySQLi yourself?

I agree 100% with the182guy, creating your own small extension would be a lot faster and more efficient then using a 3rd party script. Have a look at the following page for an easy solution to extending the MySQLi class PHP: mysqli::__construct - Manual
Blog/Portfolio | Evolution Xtreme | DFG Design | DFG Hosting | CSS-Tricks | Stack Overflow | Paul Irish
Having lame problems with your code? Let us help by using a jsFiddle

Are you looking for an ORM such as Doctrine perhaps? Your question is confusing because the inbuilt mysqli class is fully capable of executing SQL statments of any type for you, though I'll echo Anthony's suggestion to use PDO instead of it since PDO is less database specific.
Bookmarks