Skip to content
dgmike edited this page Sep 13, 2010 · 3 revisions

Ice-Baby is a new way to look your projects. Forget your concepts on three, five, eleven paths for organize your code. This framework works with the featuries on PHP5 and try to be more smallest possible providind for you a powerfull framework. Ice-Baby is a realy simple and elegant php framework. It have all you need and only what you need.

For simple projects, Appropriate solve the biggest problems faced on a daily basis, integrating the designer and programmer without major headaches.

Code with Appropriate is very simple, just create a file and with just 10 lines you have an application.

<?php
require_once(‘appropriate/app.php’);
app(array(‘^.*$’ => ‘Welcome’));
class Welcome {
  function get() {
    print ‘Hello from Bahamas!’;
  }
}

To get start, read the Getting Start? tutorial.

Clone this wiki locally