| 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');
$this_menu_info = get_menu_info((int)$_GET["id"]);
?>
<!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="services_landing_page">
<?php require_once("banner.php") ?>
<div class="container">
<div class="head_title">
<?= $this_menu_info["title_" . $langcode] ?>
</div>
<div>
<?= $this_menu_info["desc_" . $langcode] ?>
</div>
<table id="services_page_table">
<?php
$sql = "select * from menu where parent_id = ? and deleted = ? order by sort ASC";
$parameters = array((int)$_GET["id"], 0);
$menu_info = bind_pdo($sql, $parameters, "selectall");
if(!empty($menu_info)){
if((int)$_GET["id"] == 1){
$link_to = "consulting_services_detail.php";
}else{
$link_to = "training_services_detail.php";
}
$count = 1;
foreach($menu_info as $menu){
if(count($count)%3 == 0 || $count == 1){
echo '<tr>';
}
echo '<td class="vt">
<div class="inline_block" style="width: 125px;">
<div style="background: url(\'images/service_page_icon/'.$menu["icon_img_".$langcode].'\') no-repeat center center; background-size: 100%; width: 125px; height: 125px;">
</div>
</div>
<div class="inline_block vt" style="width: 230px;">
<a href="'.$link_to.'?id='.$menu["id"].'">
<div class="title">'.$menu["short_title_".$langcode].'</div>
</a>
<div class="desc1">
'.$menu["short_desc1_".$langcode].'
</div>
</div>
<div style="border: 1px solid #d4d4d4; margin: 13px 0;"></div>
<div>
'.$menu["short_desc2_".$langcode].'
</div>
<br>
<a href="'.$link_to.'?id='.$menu["id"].'">
<div class="button">
Read More
</div>
</a>
</td>';
$count++;
if(count($count)%3 == 0 && $count >= 3){
echo '</tr>';
}
?>
<?php } } ?>
</table>
<div style="padding-top: 50px;">
For more information, please contact us by filling the <a href="contact_us.php" style="text-decoration: underline; color: #10218B">Enquiry Form</a>
</div>
</div>
</section>
<?php require_once("html_footer.php"); ?>
</body>
</html>