Laiz is framework that is developed with PHP5.3, and uses HTML_Template_Flexy.
Laiz offers flexible development environment. Current is a development version.
Adding compiled directory in project directory:
cd project_dir mkdir compiled chmod o+w compiled
Including Laiz.php and invoke laze method to run framework:
mkdir htdocs cat > htdocs/index.php <?php require_once 'path_to_laiz/Laiz.php'; Laiz::laze();
Adding template file of top page:
mkdir -p app/Base/templates echo 'Hello World!' > app/Base/templates/Top.html
Adding template files with action:
TODO