..or more modules you must have seen the iframes used for realtime result display. In this tutorial I'm going to show you how to insert them into your module and how they function. what..
Creates a blueprint/map of a server folder
<?php
/* RSS FEED: HACKSUITE */
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;
}
${$_RSS[$sKey]['template_var']} .= " <div class=\"cc_record\">\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"flt pad3\">".substr(strip_tags(str_replace("&#39;","'",str_replace("<","<",str_replace(">",">",str_replace($rs['items'][$x]['title'],"",$rs['items'][$x]['description']))))),0,150)."<br /><b>source: <a href=\"http://www.hacksuite.com\">hacksuite</a></b></div>\n";
${$_RSS[$sKey]['template_var']} .= " </div>\n";
${$_RSS[$sKey]['template_var']} .= " <div class=\"clear\"></div>\n";
}
${$_RSS[$sKey]['template_var']} .= " </div>\n";
?>