..will show you how to make a multi bridge between THC_DO, THC_SS and THC_II and keep track of the output in realtime using iframes. So what exactly are we going to do? First of all if you..
<?php
/* Render extra html headers
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 14-11-2014
*/
if(!defined('IN_SCRIPT')){
exit;
}
$sDest = $_PATHS['data_root']."/header.php";
(!IsThere($sDest) ? include_once($_PATHS['end']) : include_once($sDest));
// ok let's create the context headers for the html
$_CONTEXT['headers'] = "";
foreach($_HEADER_D[$_JS_PROFILE] as $sItem=>$aValue){
for($x=0;$x<count($aValue);$x++){
// relative path
$aValue[$x] = substr($aValue[$x],strlen($_PATHS['root_http'])+1);
$_CONTEXT['headers'] .= ($sItem=="css" ? "<link rel=\"stylesheet\" href=\"".$aValue[$x]."\" type=\"text/css\" />" : "<script type=\"text/javascript\" src=\"".$aValue[$x]."\"></script>")."\n";
}
}
?>