Your IP : 216.73.216.40


Current Path : /var/www/html/ajay/phpwebsite-1.8.x/docs/
Upload File :
Current File : /var/www/html/ajay/phpwebsite-1.8.x/docs/test.php.txt

<?php

// copy this file in your phpwebsite root directory as
// test.php. Use only for development.

mb_internal_encoding('UTF-8');
/**
 * Include the defines used in Global library
 */

/**
 * DISPLAY_ERRORS set in Config/Defines.php
 */
ini_set('display_errors', 'On');
error_reporting(E_ALL | E_STRICT);
require_once 'config/core/config.php';
require_once 'core/conf/defines.dist.php';

require_once 'Global/Functions.php';

set_exception_handler(array('Error', 'exceptionHandler'));
if (ERRORS_AS_EXCEPTION) {
    set_error_handler(array('Error', 'errorHandler'));
}

/* * ************************************************* */
echo 'This is a test file for phpwebsite functionality';
/* * *************************************************** */
?>