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);