Framework is a SQL DBMS that makes mySQL communication faster, lighter, and easier.
Garrett R. Davis
Download into your project and include framework.php
$products = fw::select('products');
if($products)
{
foreach ($products as $product) {
echo $product->name . "<br />";
}
} else {
echo "No Products Found";
}
See the docs folder for documentation on the four primary methods (select, insert, update and delete)