| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/hkosl.com/alliancealliance/ |
Upload File : |
<?php
require_once ('webadmin/basic_info.php');
if(!isset($_SESSION["enrollment_success"])){
header("Location: index.php");
exit;
}else{
unset($_SESSION["enrollment_success"]);
}
$sql = "select * from static_page where id = ? and status = ? and deleted = ?";
$parameters = array(3, 1, 0);
$static_page_info = bind_pdo($sql, $parameters, "selectone");
?>
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<?php require_once("html_head.php") ?>
</head>
<body>
<?php require_once("google_analysis.php"); ?>
<?php require_once("html_header.php") ?>
<section id="content" class="enrollment_form">
<?php if(!empty($static_page_info["banner_".$langcode])){ ?>
<div class="banner">
<img src="images/banner/<?=$static_page_info["banner_".$langcode]?>"/>
<div style="position: relative">
<img class="banner_overlay" src="images/slide_bottom_overlay.png"/>
</div>
</div>
<?php } ?>
<div class="container">
<div style="padding-top: 20px;">
<div class="tc" style="padding-bottom: 20px; border-bottom: 1px solid #d4d4d4;">
<img src="images/icon_enrolltick.jpg"/>
<div class="head_title" style="padding-top: 20px;color: #4D4D4D;">
Your Enrollment has been Processed!<br>
Enrollment reference code: <?=$_SESSION["ref_code"]?>
</div>
</div>
<p class="tc" style="padding-top: 10px;font-size: 15px; color: #4D4D4D;">Thank Your for your support, You are being redirected to the main website.</p>
</div>
</div>
</section>
<?php require_once("html_footer.php"); ?>
</body>
</html>
<?php unset($_SESSION["ref_code"]) ?>