PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Unay Santisteban   Simple Framework   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Application script
Class: Simple Framework
Framework to implement MVC based Web applications
Author: By
Last change: Update of index.php
Date: 1 month ago
Size: 133 bytes
 

Contents

Class file image Download
<?php
define
('DACCESS',1);
require
'framework.php';

$app = new Application();

$app->route();

$app->dispatch();

$app->render();
?>