/var/www/hkosl.com/alliancealliance/consulting_services_detail.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
    
require_once ('webadmin/basic_info.php');

    if(empty(
$_GET["id"])){
        echo 
"<script>alert('Cannot find the relevant data.'); location.href='index.php';</script>";
        exit;
    }

    
$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="consulting_services_detail">

    <?php require_once("banner.php"?>

    <div class="container">
        <div style="padding-top: 20px;">
            <div class="head_title">
                <?=$this_menu_info["title_".$langcode]?>
            </div>


            <div style="padding-top: 30px; text-align: justify;">
                <?=$this_menu_info["desc_".$langcode]?>
            </div>
        </div>

    </div>

</section>

<?php require_once("html_footer.php"); ?>

</body>
</html>