Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 18.216.167.229
<?php
error_reporting(E_ALL ^ E_NOTICE);
require_once(dirname(dirname(__FILE__))."/cconfig.php");
$aobj_context=CConfig::CreateNewDbContext();
session_start();
$get_data="select FUNIVCODE,FUNIVNAME,FUNIVADD1,FUNIVADD2,FUNIVADD3,pdf_logo_path,FREGROLL
from control";
$obj_get_data=$aobj_context->mobj_db->GetRow($get_data);
$FUNIVCODE=$obj_get_data['FUNIVCODE'];
$FUNIVNAME=$obj_get_data['FUNIVNAME'];
$FUNIVADD1 = $obj_get_data['FUNIVADD1'];
$FUNIVADD2 = $obj_get_data['FUNIVADD2'];
$FUNIVADD3 = $obj_get_data['FUNIVADD3'];
$_SESSION['G_FUNIVCODE']=$FUNIVCODE;
$_SESSION['FREGROLL']=$obj_get_data['FREGROLL'];;
$pdf_logo_path=$obj_get_data['pdf_logo_path'];
?>
<div class='header_left_div' onclick='home();'>
<div class='header_log_left_div' style='align:right;'><img height=90 width=160 src="<?php echo $pdf_logo_path?>"></div>
</div>
<div class='header_right_div'>
<div class='header_right_txt_div'>
<?php echo $FUNIVNAME?><br>
<span id='span_address'><?php echo $FUNIVADD1;?><br></span>
<span id='span_address'><?php echo $FUNIVADD2;?><br></span>
<span id='span_address'><?php echo $FUNIVADD3;?><br></span>
</div>
<div onclick="home();" style="color: blue;
cursor: pointer;
float: right;
font-size: 13px;
position: relative;
right: -120px;">Home</div>
</div>
<div style='clear:both;'>
|