PHP Classes

File: framework/Controller.php

Recommend this page to a friend!
  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: 17 years ago
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");
  }
?>