..I 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..
<?php
/* RSS FEED: BLOGGER */
if(!defined('IN_SCRIPT')){
exit;
}
${$_RSS[$sKey]['template_var']} .= " <div class=\"cc_summary emboss borderr5 border1pxtrans pad5 edgeglow\">\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"embosshdrnocenter border1pxtrans pad5\">".$_RSS[$sKey]['title']."</div>\n";
for($x=0;$x<$_RSS[$sKey]['limit'];$x++){
// no data then move along
if(!isset($rs['items'][$x])){
continue;
}
// template title
${$_RSS[$sKey]['template_var']} .= " <div><a href=\"".$rs['items'][$x]['link']."\">".$rs['items'][$x]['title']."</a></div>\n";
${$_RSS[$sKey]['template_var']} .= " <div><p>".str_replace("'","'",str_replace("<","<",str_replace(">",">",str_replace($rs['items'][$x]['title'],"",str_replace(""","\"",nl2br($rs['items'][$x]['description']))))))."</p></div>\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"clear\"></div>\n";
${$_RSS[$sKey]['template_var']} .= " <div><hr></div>\n";
}
${$_RSS[$sKey]['template_var']} .= " </div>\n";
?>