<?PHP
$rootpath=$_SERVER['DOCUMENT_ROOT'] . "/";
include_once($rootpath . "common.php");
$ttem->set_filenames(array("header"=>$rootpath."html_template/header.html"));
$ttem->set_filenames(array("body"=>$rootpath."html_template/exchange/exchange_answerform.html"));
$ttem->set_filenames(array("top_menu"=>$rootpath."html_template/exchange/exchange_menu.html"));
if (NSession::check_login()==true)
{
$ttem->set_filenames(array("pageleft"=>$rootpath."html_template/left_logined.html"));
}
else
{
$ttem->set_filenames(array("pageleft"=>$rootpath."html_template/left_login.html"));
}
$ttem->set_filenames(array("footer"=>$rootpath."html_template/footer.html"));
$ttem->assign_var("APP_ROOT", $webappcfg['APPPATH']);
//echo("<PRE>");
//print_r($request);
//print_r($response);
//echo("</PRE>");
if (isset($response['questionid']))
$ttem->assign_var("VAR_ID", $response['questionid']);
if (isset($response['itemid']))
$ttem->assign_var("VAR_ITEMID", $response['itemid']);
@reset($response);
foreach ($response as $key => $value)
{
if (ereg("f_", $key, $matches))
{
$ttem->assign_var("VAR_" . strtoupper($key), $value);
}
}
if (isset($response['formcheckerrmsg']))
{
for ($i= 0; $i < count($response['formcheckerrmsg']); $i++)
{
$tempobj = $response['formcheckerrmsg'][$i];
if (isset($rb[$tempobj['msg']]))
$ttem->assign_var(strtoupper("ERR_VAR_" . $tempobj['field']), $rb[$tempobj['msg']]);
else
$ttem->assign_var(strtoupper("ERR_VAR_" . $tempobj['field']), $tempobj['msg']);
}
}
if (isset($response['questionobj']))
{
$ttem->assign_var("VAR_F_QUESTION", $response['questionobj']->getquestion());
}
assignlang($ttem);
$ttem->assign_var_from_handle("PAGE_LEFT_MENU", "pageleft");
$ttem->assign_var_from_handle("PAGE_EXCHANGE_MENU", "top_menu");
$ttem->pparse("header");
$ttem->pparse("body");
$ttem->pparse("footer");
?>