PHP Classes

File: dcc.php

Recommend this page to a friend!
  Classes of Gregory A. Rozanoff   DCC   dcc.php   Download  
File: dcc.php
Role: Example script
Content type: text/plain
Description: Example
Class: DCC
Dynamic content cache Class
Author: By
Last change:
Date: 21 years ago
Size: 266 bytes
 

Contents

Class file image Download
<?
// extract($_REQUEST, EXTR_OVERWRITE);

include "include/class.dcc.inc";
include
$action ? "include/class.$action.inc" : "include/class.main.inc";

$id = $id ? $id : $QUERY_STRING;

$module = new module();
$module->execute($id);
$module->done();

?>