Welcome to furinaPHP
an opensource MVC framework
Welcome to furinaPHP
Welcome to the home of furinaPHP, an opensource MVC framework for deadline aware developers. furinaPHP helps you to- create working applications from scratch in mintues, not in weeks,
- yet ensure code quality.
- Lightweight, only 190KB unpacked !
- gives you fluent interface throughtou.
- you can develop truly reusable components using relative import and configuration, view override feature
Todays Highlighted Feature
A "Hello World" script
A simple "Hello World" program in furinaPHP requires only 6 lines of code:
// controllelrs/hello_controller.php
class HelloController extends Controller {
public $model = false;
public function index() {
}
}
// views/hello/index.php
Hello World
We like to keep simple things simple.:)
Fluent Interface
furinaPHP provides a fluent interface accross most of its core classes. This is an example usage of query class in Model
$this->query()->where('some_field=some_value')->orderby('some_fiels asc')->groupby('some_field')->having('some_condition');