PHP Classes

File: index.php

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