SnowPHP

A lightweight PHP framework

Need a lightweight PHP framework with a small footprint?

SnowPHP is a simple and minimalistic MVC PHP framework for rapid development of web applications. You may fork the project on GitHub.

A Quick Example

We all know how important forms are to a web application. SnowPHP has a super-sweet* Form class that allows you to add form elements quickly, while still allowing access to css classes, styles, or additional parameters you'd like to pass to each element.

$form = new Form('login', $this->url('home/login'));
echo $form->open();
echo $form->fieldset('Login');
echo $form->text('email', 'Email:', array(
	'value' => 'demo@demo.com'
));
echo $form->password('password', 'Password:');
echo $form->submit('submit', 'Login');
echo $form->close();
	

. . . will render as . . .

Login

* Well . . . maybe not that sweet ;)