insert query in sql

PHP MySQL Query Builder Library

PHP MySQL Query Builder Library

Burner CMS Burner CMS allows you to simply define data models and manage data right away. Get it now and save! Note: The Burner CMS API uses an improved version of this library. PHP MySQL Query Builder Library A PHP 5 library that allows you to easily create and run both simple and advanced MySQL queries in an object-oriented fashion, without using any SQL and without sacrificing functionality. Query types supported include: Select Join I...

EazSQL - PHP MySQL Helper

EazSQL - PHP MySQL Helper

This is a PHP5 Class-Helper that will allow you to make MySQL actions more easy, without too much lines. You will use like only 70% of classic code, and the syntax is more easy. Here you can see some examples: $mysql = new EazSQL('host', 'username', 'password', 'database'); // VS Old (classic) method: $mysql = mysql_connect('host', 'username', 'password') or die ('Mysql error, connection'); mysql_select_db('datababse', $mysql) or die ('Mysql...