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
48
49
50
51
52
53
54
55
56
57
58
59
|
<?php require_once ('webadmin/basic_info.php');
$sql = "select * from static_page where id = ?"; $parameters = array(2); $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="special_offer">
<?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: 20px 0;">
<div style="padding-top: 30px; text-align: justify; "> <div class="inline_block vt" style="width: 70%;"> <div class="head_title"> <?=$static_page_info["title_".$langcode]?> </div>
</div> </div>
<div> <?=$static_page_info["desc_".$langcode]?> </div> </div> </div>
</section>
<?php require_once("html_footer.php"); ?>
</body> </html>
|