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
|
<?php include_once("./_common2.php"); ?> <? include "../../manage/category/common.php"; ?>
<html> <head> <title>¸Å´º¾ó ÀμâÇϱâ</title> <META http-equiv="Content-Type" content="text/html; charset=euc-kr">
<script> function billPrint(){ //hidden_top.innerHTML = ""; hidden_bottom.innerHTML = ""; window.print(); } </script>
<style type="text/css"> table { width:750px;} .strong {font-size:18px; } .contents { font-size:15px; line-height:80%; padding-top:20px;}
</style>
</head>
<body oncontextmenu="return false" onselectstart="return false" ondragstart="return false">
<!-- »ó¼¼±Û ³»¿ë --> <? if( isset($uid) && $uid !== ""){ $oneQry = "select content, subject from manualBoard WHERE uid = '$uid' "; $oneResult = mysql_query($oneQry);
$oneRow = mysql_fetch_array($oneResult); $content = nl2br(stripslashes($oneRow['content'])); $subject = nl2br(stripslashes($oneRow['subject'])); ?>
<table> <tr><td height="2" bgcolor="627aaf" colspan="2"></td></tr> <tr height="40"> <td><img src="./img/customer/manual_icon.jpg"></td> <td class="strong"><strong><?=$subject;?></strong></td> </tr> <tr><td height="1" bgcolor="cecece" colspan="2"></td></tr>
<tr><td height="20"></td></tr>
<tr><td class="contents" colspan="2"><?=$content;?></td></tr> <tr> <td id='hidden_bottom' colspan="2" align="center"><a href='javascript:billPrint();'><img src="./img/manual/btn_print.jpg" border="0" alt="Àμâ"></a> </td> </tr> </table>
<? } ?> <!-- »ó¼¼±Û ³»¿ë ³¡ -->
</body> </html>
|