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
|
<? include("../manage/category/common.php"); if( $cate2_code !== "" && $category_code){ $sel = " select * from cate3 WHERE cate2_code = '$cate2_code' AND category_code = '$category_code' "; $result = mysql_query($sel); if( mysql_num_rows($result) > 0){ $row = mysql_fetch_array($result); $_img = "../manage/program_img/".$row[program_compare_img]; ?> <title>ÇÁ·Î±×·¥ ºñ±³</title> <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0"> <table width="720" height="115" border="0" cellpadding="0" cellspacing="0"> <tr> <td><img src='<?=$_img;?>' onClick="javascript:window.close();" style="cursor:hand;"></td> </tr> </table> <body> <? } } ?>
|