- <?
- /**
- * The index.php.
- * The main entry for a browser request
- *
- * @package profiler
- * @filesource
- * @see index.php
- * @copyright (c) http://Finn-Rasmussen.com
- * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
- * @author http://Finn-Rasmussen.com
- * @version 1.9
- * @since 21-oct-2005
- */
-
- /**
- * The required files
- */
- require_once($_SERVER['DOCUMENT_ROOT'].'/initialize.php');
-
- /**
- * Show in plain text
- */
- header("Content-Type: text/plain; charset=utf-8");
- header('Content-Transfer-Encoding: none');
-
- /**
- * Initialize the Profiler system
- * @see Timer
- */
- require_once(HTML_PROFILER_COMPONENT_PATH.'/Timer.php');
- Timer::init(); // Start Profiler
- Timer::display('','Start Profiler');
- Timer::dump(); // Print as html
- ?>