Love4Web
Love4Web is a PHP based Web Framework for easy and fast develop of complex websites with objects persistence, templates and AJAX support. The KISS principle states that simplicity in design should be a key goal. With simple and less code you can simply build a weblog or a news page.
Here's a little example:
<?php
include("common.php");
$website = new love4web();
$db = Persistent::getInstance();
// retreive some news...
$db->setFirstResult(0);
$db->setLastResult(2);
// DB Object persistence layer Hibernate like...
$news = $db->collect("news");
$website->addTemplate("index.tpl");
$website->templateAssign("news", $news);
$website->run();
?>Keep in mind that this framework wont turn you into a good developer, it can only help you :-)
features: smarty templates, XML-RPC support, JS and Ajax with prototype and Scriptaculous, TinyMCE and many more...