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
|
<?php require("configure.php"); $page = $_GET['page']; ?> <!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"> <html> <head> <title>Stand Raise Limited</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" type="text/css" href="../css/style.css" /> </head> <body bgcolor="#CCCCCC" leftmargin="0" topmargin="0" style="background-repeat:repeat-x" background="../images/main_bg.jpg"> <table width="900" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <!-- Header --> <?php require("header.php"); ?> </tr> <tr> <td height="52" align="center" valign="top"> <!-- Menu --> <?php require("menu.php"); ?></td> </tr> <tr> <td align="left" valign="top" bgcolor="#FFFFFF"><table width="900" height="500" border="0" cellpadding="0" cellspacing="0"> <tr><td width="215" align="left" valign="top" bgcolor="#E6E7E9"><img src="../images/menutop.jpg" /> <!-- Sub Menu --> <?php require("submenu.php"); ?> </td> <td width="685" align="left" valign="top"><div class="colMiddle"><table border="0" cellpadding="0" cellspacing="0"> <tr> <td width="655"><table width="655" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="title">产品</td> </tr> <tr> <td class="txt"><div class="colcontenttxt"> <? $sql = "SELECT * "; $sql .= "FROM productmainpage "; $result = mysql_query($sql); $row = mysql_fetch_array($result,MYSQL_ASSOC); echo $row{'productmainpagedescsc'} ?> </div></td> </tr> </table></td> </tr> </table> </div></td> </tr> </table></td> </tr>
<!-- Footer --> <?php require("footer.php"); ?> </table> </body>
</html>
|