Skip to content
This repository has been archived by the owner on Feb 4, 2020. It is now read-only.

Latest commit

 

History

History
27 lines (20 loc) · 910 Bytes

contents.md

File metadata and controls

27 lines (20 loc) · 910 Bytes

ONE PHP Micro Framework Documentation

Just 2 simple class to help you develop easy and fast websites and webservices for webs 2.0 and allow you to create your own microframework easily.

Table of contents:

5- More

Simplest example:

    //index.php file
    require_once('src/OnePHP/one_framework.php');
    $app = new \OnePHP\App();

    $app->get('/',function() use ($app){//Action
        echo 'Hello world';
    });
    $app->listen();
Contribute and improve this documentation.
Click Edit and Fork the project.