Login   Register  
PHP Classes
elePHPant
Icontem

File: p4a_events.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Francisco Arias  >  PHP 4 Applications  >  p4a_events.php  >  Download  
File: p4a_events.php
Role: Example script
Content type: text/plain
Description: Script that capture the events for the example
Class: PHP 4 Applications
Create event driven Web GUI using remote scripting
Author: By
Last change:
Date: 2004-08-01 10:20
Size: 221 bytes
 

Contents

Class file image Download
<?php

    
require_once("p4a.php");
    require_once(
"myapp.php");

    
session_start();

    foreach( 
$_GET as $k => $v)
        
$event[$k] = $v;

    
$p4a = & $_SESSION['Application'];
    
    echo 
$p4a->event_handler$event);
?>