PHP Classes

File: examples/htmlform/config.php

Recommend this page to a friend!
  Classes of Haseeb Ahmad Basil   PHP Skeleton Framework   examples/htmlform/config.php   Download  
File: examples/htmlform/config.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Skeleton Framework
Extensive Web application development framework
Author: By
Last change:
Date: 8 years ago
Size: 436 bytes
 

Contents

Class file image Download
<?php
$ConfigArray
= array(
// Site specific settings
);

ini_set('error_reporting', E_ALL);
#ini_set('include_path', ini_get('include_path') . PATH_SEPARATOR . '../../');

function dump($var, $name='') {
    if (
is_array($var) || is_object($var)) {
        echo
'<pre style="color:black;">' . $name . (isset($var) ? print_r($var, true) : '') . '</pre>';
    } else {
        echo
"<span style=\"color:black;\">$name$var<br/><span>";
    }
}