Hello
Posted: Mon Nov 22, 2010 11:23 am
Hi i know a bit of html and php, only problem is ive been given this script which id like to change... id liike to edit some things but I do not have a clue how to... the main php script file is this:
When i navigate to this page a whole website appears, its strange, i dont even know how to add a <p> font tag in it and it wud appear in a section of the site...can anyone help me..?
Code: Select all
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);
define('LS_VERSION','0.4.2');
define('SYS_HACKER_CONSOLE',false);
header('Content-Type: text/html; charset=utf-8');
set_include_path(get_include_path().PATH_SEPARATOR.dirname(__FILE__));
chdir(dirname(__FILE__));
require_once("./config/loader.php");
require_once(Config::Get('path.root.engine')."/classes/Engine.class.php");
$oProfiler=ProfilerSimple::getInstance(Config::Get('path.root.server').'/logs/'.Config::Get('sys.logs.profiler_file'),Config::Get('sys.logs.profiler'));
$iTimeId=$oProfiler->Start('full_time');
$oRouter=Router::getInstance();
$oRouter->Exec();
$oProfiler->Stop($iTimeId);
?>When i navigate to this page a whole website appears, its strange, i dont even know how to add a <p> font tag in it and it wud appear in a section of the site...can anyone help me..?