..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
/* Content between body tags */
if(!defined('IN_SCRIPT')){
exit;
}
$_CONTEXT['htmlo'] .= "<body>\n";
$_CONTEXT['htmlo'] .= "<div class=\"loginwrap\">\n";
$_CONTEXT['htmlo'] .= " <div class=\"slide pad15\">\n";
$_CONTEXT['htmlo'] .= " <div class=\"imgbg\">\n";
$_CONTEXT['htmlo'] .= " <form class=\"sendform\">\n";
$_CONTEXT['htmlo'] .= " <div class=\"form\">\n";
$_CONTEXT['htmlo'] .= " <div class=\"password\"><input type=\"password\" name=\"sPass\" value=\"\" style=\"background-color:transparent;\" size=\"38\" /></div>\n";
$_CONTEXT['htmlo'] .= " <div class=\"submit\"><input type=\"submit\" name=\"submit\" class=\"hitme\" value=\"Login\" /></div>\n";
$_CONTEXT['htmlo'] .= " </div>\n";
$_CONTEXT['htmlo'] .= " </form>\n";
$_CONTEXT['htmlo'] .= " </div>\n";
$_CONTEXT['htmlo'] .= " </div>\n";
$_CONTEXT['htmlo'] .= "</div>\n";
$_CONTEXT['htmlo'] .= "</body>\n";
?>