Skip to content

v1.4.0

Latest
Compare
Choose a tag to compare
@TheDevick TheDevick released this 01 Nov 12:03
· 6 commits to master since this release
b4bd452

Add Order By in in Select Class
How To Use:

$MySql = new MySql("localhost", "root", "MySql", "world", $state);

$Select = new Select($MySql);

//Selecting all, order by Code
$Select->All("country", "Code");

//Selecting everything where the region is "South America", Order Ny Name, with 5 Limit
$Select->Where("country", "Region", "South America", "Name", 5);