Login   Register  
PHP Classes
elePHPant
Icontem

File: action.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2008-06-26 15:47
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/>";
?>