|
Description: EZ Select is a simple PHP class designed to make it easier to construct complex SELECT queries for MySQL. It is often difficult to generate complicated SELECT queries based on user input, and you end up with a mess of if statements trying to figure out how far along the query is (whether or not you added the WHERE clause yet, etc). EZ Select allows you to add clauses to the query as you go via class methods, then when you're ready to use it, the class will construct the query automatically.
|