| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/msc/sources/ |
Upload File : |
<!-- ###### -->
<h2>@[PAGE_TITLE]</h2>
<?php
global $mCtrl, $fields;
global $list_months, $list_countries;
include_once 'sources/applyonline_fields.php';
$id = Utils::vRequest("id");
if (strlen($id) == 0) $mCtrl->redirectTo("@[URLROOT]/report_applications.php");
$rows = NULL;
$num = 0;
$query = "SELECT * FROM `msc_Applications` WHERE `Id` = '{$id}'";
DBUtils::getrows($query, $rows, $num);
if ($num == 0) $mCtrl->redirectTo("@[URLROOT]/report_applications.php");
$fields->addSpacer(FormSpacer::tpHeader, "@[HDR_APPLICATIONDETAILS]", 0);
$fields->fieldsHash['Id']->Value = $id;
$fields->getValuesFromDB();
?>
<div>
<a href="@[URLROOT]/report_applications.php">back to applications list</a>
</div>
<style>
#applicationtable td.tdR{
font-weight: bold;
}
</style>
<table id="applicationtable" cols="2">
<?php
$fields->fieldsHash['Id']->isHidden = FALSE;
$fields->renderTable($mCtrl);
?>
</table>