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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<?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 contactus "; $result = mysql_query($sql); $row = mysql_fetch_array($result,MYSQL_ASSOC); echo $row{'contactusdescsc'} ?> <p><form action="sendEmail.php" method="post" name="order" id="order"> <table width="579" border="0" cellpadding="0" cellspacing="0"> <tr> <td height="25" colspan="2" align="center" class="txt"><strong> </strong></td> </tr> <tr> <td width="145" height="25" align="right" class="txt"><strong> 联络人名称: </strong></td> <td width="434" class="txt"><input name="gender" type="radio" value="Mr." checked> 先生 <input name="gender" type="radio" value="Ms."> 女士 <input type="text" name="name" maxlength="50" size="40" class="txt" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> 公司名称: </strong></td> <td class="txt"><input name="coname" type="text" class="txt" id="coname" size="48" maxlength="50" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> 电话 : </strong></td> <td class="txt"><input type="text" name="tel" maxlength="20" size="40" class="txt" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> 传真: </strong></td> <td class="txt"><input type="text" name="fax" maxlength="20" size="40" class="txt" /></td> </tr> <tr> <td height="25" align="right" class="txt"><strong> 电邮: </strong></td> <td class="txt"><input type="text" name="email" maxlength="50" size="48" class="txt" /></td> </tr> <tr> <td height="25" align="right" valign="top" class="txt"><strong> 查询内容: </strong></td> <td width="434" class="txt"><textarea name="message" cols="50" rows="8" class="txt"></textarea></td> </tr> <tr align="center"> <td height="20" colspan="2"> </td> </tr> <tr align="center"> <td height="20" colspan="2"><input name="Submit" type="submit" value="Submit" /> <input name="Reset" type="reset" value="Reset"></td> </tr> <tr align="center"> <td height="20" colspan="2"> </td> </tr> </table> </form></p> </div></td> </tr> </table></td> </tr> </table> </div></td> </tr> </table></td> </tr>
<!-- Footer --> <?php require("footer.php"); ?> </table> </body>
</html>
|