PHP Classes

File: action.php

Recommend this page to a friend!
  Classes of Marcelo Costa   OOE   action.php   Download  
File: action.php
Role: Example script
Content type: text/plain
Description: exempla action script
Class: OOE
Web development application framework
Author: By
Last change:
Date: 15 years ago
Size: 369 bytes
 

Contents

Class file image Download
<?php
include_once ("_autoload.php");
#
$Objeto = new OOE();
$Objeto->checkSession();
#
echo "#####:- SESSION -:#####\r\n";
var_export($_SESSION);
#
echo "#####:- REQUEST -:#####\r\n";
var_export($_REQUEST);
#
echo "#####:- DECODE -:#####\r\n";
var_export($Objeto->getParam());
#
echo "\r\n<br/>veja o código fonte<br/>";
echo
"\r\n<br/>view html source code<br/>";
?>