FUSE is a Model View Controller framework for PHP, taking influence from other web frameworks such as Ruby on Rails and CakePHP.
FUSE provides a powerful application development engine that allows you to:
- Rapidly create a working Model/View/Controller structure to properly organize your application
- Model your database tables (often automatically) to provide application-level access to data without SQL.
- Offer fully functional create, read, update, and delete functions with only a few lines of code
- Create a user authentication (login/permissions/privileeges) scheme for your site with just a few lines of code
- Statically cache pages as HTML (or css, js, etc) for greatly increased site efficiency
- Route URIs, which eliminates the need for ugly query strings and can greatly assist with SEO
- Separate HTML presentation from application code with a powerful but easy templating engine


