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
|
<?php require("configure.php"); $productimageid = (int)$_GET['productimageid'];
$sql = "SELECT * FROM productimage "; $sql .= "where productimage.productimageid = ". $productimageid ." ";
$result1 = mysql_query($sql); $row = mysql_fetch_array($result1,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"> <html> <head> <title><?=$row{'productnamesc'}?></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="#FFFFFF" leftmargin="0" topmargin="0">
<table width="700" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="300" align="center"><img src="../admin/product/<?=$row{'image'}?>" /> </td> </tr> <tr> <td><img src="../images/footerline.jpg" width="700" height="16" /></td> </tr> <tr> <td class="txt"><div class="colPopProduct"> <table width="670" border="0" cellpadding="0" cellspacing="0"> <tr> <td><div class="PopProducttitletxt"> <div align="right" class="PopProducttitletxt"><?=$row{'productnamesc'}?></div> </div> <div align="right"><strong>型号: <?=$row{'productmodel'}?></strong></div></td> </tr> <tr> <td class="txt"><?=$row{'productdescsc'}?></td> </tr> </table> <br /> <table width="670" border="0" cellpadding="0" cellspacing="0"> </table> <p><br /> </p> <p> </p> </div></td> </tr> <tr> <td class="txt"> <div align="center"> <input type=button value=Close onClick=javascript:window.close()> </div></td> </tr> </table> </body>
</html>
|