PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Gregory   Smart URI   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: index.php
Class: Smart URI
Wrap all site requests around a single PHP script
Author: By
Last change:
Date: 19 years ago
Size: 211 bytes
 

Contents

Class file image Download
<?
require_once "lib/class.driver.inc";

$site = new driver(array(
   
"#" => "index",
       
"test" => array (
           
"#" => "index_test",
           
"*" => "index_test",
        ),
    )
);
$site->execute();
$site->done();
?>