PHP SQL Query Builder
As an excersise I have started building another php based sql query builder (separate from my stagnating php framework). So far I can do SELECT [columns] FROM table WHERE [conditions] This is how it should be used (so far): (for the examples, assume that $q is a query object) $q->table(’test’) ->column(’test_2′, ‘test’) ->table(’test_3′, ‘test_2′); //=> SELECT test_2 as test FROM… Read more →
