PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Mohammed Al Ashaal   Horus Framework   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Horus Framework
Develop Web applications using a micro framework
Author: By
Last change: Update index.php
Date: 9 years ago
Size: 185 bytes
 

Contents

Class file image Download
<?php

   
// load Horus.php
   
include 'Horus.php';

   
// start horus
   
$app = &Horus();

       
$app->router->get('/', BASEPATH . 'wiki.html');

   
// run it
   
$app->run();