Login   Register  
PHP Classes
elePHPant
Icontem

File: samples/trusted.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Paul Fryer  >  PHP Sandbox  >  samples/trusted.php  >  Download  
File: samples/trusted.php
Role: Auxiliary data
Content type: text/plain
Description: A trusted PHP script
Class: PHP Sandbox
Execute external PHP scripts in a separate process
Author: By
Last change: Tided code
Date: 2011-08-01 05:28
Size: 329 bytes
 

Contents

Class file image Download
<?php
var_dump(session_start());
echo '<br/>';
echo('<br/>Session ID: '.session_id().'<br/>');

echo '<p>Initial Session Data: ';
var_dump($_SESSION);

$_SESSION['TRUSTED_TIME'] = time();

echo '<p>Updated Session Data: ';

var_dump($_SESSION);

echo '<p>GET Data: ';

var_dump($_GET);

echo '<p>POST Data: ';

var_dump($_POST);