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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?php require_once('../webadmin/configure.php'); // SEO $result = mysql_query("SELECT * FROM mainmenu WHERE mmpath = 'contact.php' "); $row = mysql_fetch_array($result,MYSQL_ASSOC); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=7" /> <title><?=$row{'seotitleen'};?></title> <meta name="keywords" content="<?=$row{'seokeyen'};?>" /> <meta name="description" content="<?=$row{'seodescen'};?>" /> <link rel="stylesheet" type="text/css" href="../css/style.css" /> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="../css/ddaccordion.css" /> <script type="text/javascript" src="../js/jquery.easing.js"></script> <script type="text/javascript" src="../js/jquery.accordion.js"></script>
<script type="text/javascript"> jQuery().ready(function(){ jQuery('#navigation').accordion({ active: false, header: '.head', navigation: true, event: 'mouseover', animated: 'easeslide', autoheight: true }); $('#accordion-1').easyAccordion({ autoStart: true, slideInterval: 3000, slideNum:false }); }); </script>
<script type="text/javascript" src="../js/jquery.easyAccordion.js"></script> <link rel="stylesheet" type="text/css" href="../css/easyAccordion.css" />
<link rel="stylesheet" type="text/css" href="../js/flexcrollstyles.css" /> <script type='text/javascript' src="../css/flexcroll.js"></script>
<script type="text/javascript" src="../js/jquery.jcarousel.pack.js"></script> <link rel="stylesheet" type="text/css" href="../css/jquery.jcarousel.css" /> <link rel="stylesheet" type="text/css" href="../css/skin.css" /> <script type="text/javascript" src="../js/jCarousel.js"></script> </head> <body><?php include_once("analyticstracking.php") ?> <table width="1000" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="140" colspan="2"><a href="index.php"><img src="../images/logo.jpg" width="200" height="80" alt="KARLSON C & C Limited" /></a></td> </tr> <tr> <td align="left" valign="top" id="mainmenubg"><ul id="navigation"> <?php $result2 = mysql_query("SELECT * FROM mainmenu ORDER BY mmsort ASC "); while ($row2 = mysql_fetch_array($result2,MYSQL_ASSOC)) { echo "<li>"; echo "<a class='head' href='".$row2{'mmpath'}."'>".$row2{'mmtitleen'}."</a>"; if ($row2{'mmid'} == '2') { echo "<ul>\n"; $result3 = mysql_query("SELECT * FROM project_cat WHERE pjcatstatus = '1' ORDER BY pjcatsort ASC "); while ($row3 = mysql_fetch_array($result3,MYSQL_ASSOC)) { echo "<li><a href='".$row2{'mmpath'}."?pjcatid=".$row3{'pjcatid'}."'>".$row3{'pjcattitleen'}."</a></li>\n"; } echo "</ul>\n"; } echo "</li>\n"; } ?></ul></td> <?php $result4 = mysql_query("SELECT * FROM contact ORDER BY contactid ASC "); $row4 = mysql_fetch_array($result4,MYSQL_ASSOC); ?> <td width="800" height="350" align="left" valign="top"><?php if(!empty($row4{'contactimage'})) echo '<img src="../uploadfile/'.$row4{'contactimage'}.'" width="350" height="350" align="left" />';?> <table width="450" border="0" cellspacing="0" cellpadding="0" id="table"> <tr> <td class="title"><?=$row4{'contacttitleen'};?></td> </tr> <tr> <td class="txt"><div id="mycustomscroll" class="flexcroll"><?=$row4{'contactdescen'};?></div></td> </tr> </table></td> </tr> <tr> <td colspan="2" id="footer" class="footer">Copyright © KARLSON C & C Limited. All Copyright Reserved.</td> </tr> </table> </body> </html>
|