Skip to content

v1.3.0

Compare
Choose a tag to compare
@TheDevick TheDevick released this 31 Oct 23:27
· 8 commits to master since this release

Add Limit in in Select Class
How To Use:

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

$Select = new Select($MySql);

//Selecting all, with 5 Limit
$Select->All("country", 5);

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