<?php
/*
* @author Bulent Tezcan. bulent@greenpepper.ca
*/
#
# This file required by the Dump.class.php for displaying the popup windows.
# Put this file where ever your Dump.class.php file is...
#
require_once "Dump.class.php";
session_start();
$d = new Dump( );
echo $d->getHtmlFromAGivenData($_SESSION['__dump']);
return true;
?>
|