PHP Classes

File: p4a_events.php

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