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
|
<?php $query="SELECT a.id AS ProductID , a.product_name_th , a.product_name_en, a.mainCateId , a.subCateID FROM tbl_product_data a ORDER BY RAND() LIMIT 10 "; //echo $query; $result=mysql_query($query); ?> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <style> A:link#white {font-family: Arial, Helvetica, sans-serif;font-size: 10pt; COLOR:#dddddd; TEXT-DECORATION: none;} A:visited#white {font-family: Arial, Helvetica, sans-serif;font-size: 10pt;COLOR:#dddddd; TEXT-DECORATION: none;} A:hover#white {font-family: Arial, Helvetica, sans-serif;font-size: 10pt;COLOR:#ffc600; TEXT-DECORATION: NONE; } A:active#white {font-family: Arial, Helvetica, sans-serif;font-size: 10pt;COLOR:#dddddd; TEXT-DECORATION: none;}
</style> <div class="container" style="background-color:#333333; height:210px; !important"> <!-- <section class="ac-container"> --> <div style="background-color:#333333; text-align:left;"> <!-- <input id="ac-1" name="accordion-1" type="checkbox" checked /> <label for="ac-1" style="text-align:right; padding-right:50px;">Open / Close Footer</label> --> <article class="ac-small" style="background-color:#333333"> <ul id="column_footer" class="txt-white" style="list-style-type:square; width:150px; padding-left:30px; background-color:#333333"> <li><a href="index.php" id="white"><?php echo _Home?></a></li> <li><a href="company.php" id="white"><?php echo _AboutUs?></a></li> <li><a href="service.php" id="white"><?php echo _ServiceHeader?></a></li> <li><a href="reference.php" id="white"><?php echo _PortfolioHeader?></a></li> <li><a href="howtosetup.php" id="white"><?php echo _HowToHeader?></a></li> <li><a href="news.php" id="white"><?php echo _NewsHeader?></a></li> <li><a href="map.php" id="white"><?php echo _MapHeader?></a></li> <li><a href="branch.php" id="white"><?php echo _AffiliatesHeader?></a></li> </ul> <ul id="column_footer" class="txt-white" style="list-style-type:square; width:50px; height:140px; border-right:1px solid white;" > <li><?php echo _ProductHeader?></li> </ul> <ul id="column_footer" class="txt-white" style="list-style-type:square; width:300px;" > <?php while($product=mysql_fetch_assoc($result)){ if($_SESSION['lang']=='th'){ $product['title']=$product['product_name_th']; }else{ $product['title']=$product['product_name_en']; } ?> <li><a href="product.php?ref=<?php echo $product['ProductID']?>"><font color="#FFFFFF"><?php echo $product['title']?></font></a></li> <?php }?> </ul>
<ul id="column_footer" class="txt-white" style="list-style-type:square; width:350px; background-color:#333333"> <!--<img src="images/index/index_44.jpg" width="22" height="22" style="vertical-align:bottom"><?php echo _Address?>--> <img src="images/index/index_47.jpg" width="22" height="23" style="vertical-align:bottom">Tel. 074-556197 - 9 <br> <!-- Fax. 074 -556033, 074-556335 <br>--> Mobile: 061-1725445 , 086-4753535
<br> <br> <img src="images/index/index_49.jpg" width="22" height="18" style="vertical-align:bottom" id="white">Email: <a href="mailto:ithanahatyai@hotmail.com" target="_blank" id="white">ithanahatyai@hotmail.com</a><br> <br> <a href="http://www.twitter.com" target="_blank"><img src="images/index/index_52.jpg" width="26" height="25" style="vertical-align:bottom; padding-left:20px;"></a><a href="https://www.facebook.com/pages/บริษัท-อัยธนา-จำกัด/742599959122088?ref=hl" target="_blank"><img src="images/index/index_53.jpg" width="24" height="25" style="vertical-align:bottom"></a><a href="mailto:ithanahatyai@hotmail.com" target="_blank"><img src="images/index/index_54.jpg" width="24" height="25" style="vertical-align:bottom"></a><a href="https://plus.google.com/" target="_blank"><img src="images/index/index_55.jpg" width="25" height="25" style="vertical-align:bottom"></a><br> <span class="txt8 txt-white"> ©Copyright I-THANA Co.,Ltd. All rights reserved. <br> Designed by <a href="http://www.me-fi.com" target="_blank" id="white8">ME-FI dot com</a></span> <br /> <!-- Histats.com START --> <a href="http://www.histats.com" target="_blank" title="free log" > <script type="text/javascript" language="javascript"> var s_sid = 436944;var st_dominio = 4; var cimg = 111;var cwi =175;var che =25; </script> <script type="text/javascript" language="javascript" src="http://s10.histats.com/js9.js"></script> </a> <noscript><a href="http://www.histats.com" target="_blank"> <img src="http://s4.histats.com/stats/0.gif?436944&1" alt="free log" border="0"></a> </noscript> <!-- Histats.com END --> </ul> </article> </div> <!-- </section>--> </div>
|