Skip to content

Framework is a SQL DBMS that makes mySQL communication faster, lighter, and easier.

Notifications You must be signed in to change notification settings

imphatic/framework

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

framework

Framework is a SQL DBMS that makes mySQL communication faster, lighter, and easier.

Author

Garrett R. Davis

Install

Download into your project and include framework.php

Sample Usage

$products = fw::select('products');

if($products)
{
    foreach ($products as $product) {
       echo $product->name . "<br />";
    }
} else {
    echo "No Products Found";
}

Documentation

See the docs folder for documentation on the four primary methods (select, insert, update and delete)

About

Framework is a SQL DBMS that makes mySQL communication faster, lighter, and easier.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages