Login   Register  
PHP Classes
elePHPant
Icontem

File: index.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  >  index.php  >  Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Start script of the example
Class: PHP 4 Applications
Create event driven Web GUI using remote scripting
Author: By
Last change:
Date: 2004-08-01 10:15
Size: 217 bytes
 

Contents

Class file image Download
<?php
    
require_once('myapp.php');

    
session_start();

    
$_myapp = new MyApp('My P4A Application');
    
$_myapp->setTheme('bluetheme');

    
$_SESSION['Application'] = $_myapp;
    
$_SESSION['Application']->flush();
?>