Login   Register  
PHP Classes
elePHPant
Icontem

File: WEB-INF/main.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Gregory  >  Damn Small MVC  >  WEB-INF/main.php  >  Download  
File: WEB-INF/main.php
Role: Example script
Content type: text/plain
Description: Site URI structure model
Class: Damn Small MVC
Light weight MVC implementation framework
Author: By
Last change:
Date: 2005-05-12 09:54
Size: 226 bytes
 

Contents

Class file image Download
<?
/*
    Site model file environmant varuables
    $_RUN        URI structure
    $_HEADER    HTTP header variables
*/
$_HEADER = array(
    
'Content-Type: text/html; Charset=Windows-1251',
    );

$_RUN = array(
    
'#' => 'index',
    );
?>