Login   Register  
PHP Classes
elePHPant
Icontem

File: dump/dump.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Bulent Tezcan  >  Adump  >  dump/dump.php  >  Download  
File: dump/dump.php
Role: Application script
Content type: text/plain
Description: The script for the popup window
Class: Adump
A class that dumps any kind of variable
Author: By
Last change:
Date: 2002-11-19 23:12
Size: 374 bytes
 

Contents

Class file image Download
<?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;

?>