Login   Register  
PHP Classes
elePHPant
Icontem

File: index.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2005-03-10 09:33
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();
?>