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
|
<?php require("configure.php"); ?> <!-- One Solution Limited --> <html> <head> <title>Yun Fung Metal Industrial Limited</title> <meta http-equiv="Content-Type" content="text/html; charset=big5" /> <link rel="stylesheet" href="style.css"> <script type="text/javascript" src="flash/objectSwap.js"></script> </head> <body bgcolor="#CFCEE1" LEFTMARGIN="0" TOPMARGIN="0" style="background-repeat:repeat-x" background="image/page_bg.png"> <table width="800" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="800" height="265"><?php require("header.php"); ?></td> </tr> <tr> <td style="padding-top:10;padding-bottom:20"><table width="800" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="566"><img src="image/page_title_line.gif" width="566" height="60"></td> <td width="234" valign="middle" class="title">Our Product </td> </tr> </table></td> </tr> <tr> <td align="left" valign="top" class="content" style="padding-left:20"><p>We supply full range of fastener, with over 25,000 standard parts and special purpose fasteners to choose from, including captive fastener, brass insert, self clinching nut & stud, standoffs, nylon/delrin screw, washer, rivet, etc..., in a wide variety of sizes, strengths, designs and material. </p> <p>Except producing standard parts, we can also manufacture special pieces to customer specifications and drawings, they're all bound to fit customer's need.</p> <p>All our products are controlled by Quality Assurance Procedures for dimensions, strength, protecion and productive furnishing afterwards. </p> <p> </p></td> </tr>
<tr> <td align="left" valign="top" style="padding-left:20"><table width="780" border="0" cellpadding="0" cellspacing="0"> <? $sql = "SELECT * "; $sql .= "FROM category ";
$result = mysql_query($sql); $x = 1; while ($row = mysql_fetch_array($result,MYSQL_ASSOC)) { if ($x == 1 or $x%2 == 1)
echo "<tr>";
echo "<td width='390' height='200' align='left' valign='top' background='image/product_bg.gif' style='padding-top:10'>"; echo "<span class='product-content'>"; echo $row{catname}; echo "</span><br><br>"; $sql1 = "SELECT * "; $sql1 .= "FROM products "; $sql1 .= "where catid = ". $row{catid} ." "; $sql1 .= "limit 2";
$result1 = mysql_query($sql1); while ($row1 = mysql_fetch_array($result1,MYSQL_ASSOC)) { echo " <a href='product_detail.php?catid=". $row{catid} ."'><img src=../product/".$row1{'image'}." border='0' width='165' height='110'></a>"; } echo "<br><br><br></td>"; if ($x%2==0) echo "</tr>";
$x++; } ?>
</table> </td> </tr> <!--footer--> <tr> <td height="45" align="right" class="footer">Copyright © 2009 Yun Fung Metal Industrial Limited. All Rights reserved. </td> </tr> </table> </body>
</html>
|