Login   Register  
PHP Classes
elePHPant
Icontem

File: framework/Controller.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of sunish  >  RSPA  >  framework/Controller.php  >  Download  
File: framework/Controller.php
Role: Example script
Content type: text/plain
Description: Controller script
Class: RSPA
Process browser events on the server using AJAX
Author: By
Last change: Change for PHP4
Date: 2006-07-20 10:55
Size: 284 bytes
 

Contents

Class file image Download
<?php
/**
  *
  *
  *  Author : Sunish Kumar M.V
  *
  *  This is licenced under LGPL licence.
  * 
  **/

  
require_once("rspaconf.inc.php");

  if (
phpversion() >= 5){
     require_once(
"Controller_v5.php");
  }else{
     require_once(
"Controller_v4.php");
  }
?>