PHP Classes

File: dump/dump.php

Recommend this page to a friend!
  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: 21 years ago
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;

?>