My favorites | Sign in
Project Home Downloads Wiki Issues Source
Project Information
Members
Featured
Downloads

A simple PHP framework designed to work like web.py.

Why

Because people need to create readable and clean PHP apps with less code as possible. Most frameworks are full of code, wephp doesn't get in your way and lets you be productive right away.

Example

<?php
require('wephp/web.php');
$urls = array(
   '/' => 'hello',
);
class hello {
   function GET($path) {
      echo 'hello world';
   }
}
web::run($urls);
?>
Powered by Google Project Hosting