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
106
|
<? include_once("./_common.php"); include("./include/common/header.php"); ?>
<? if (!isset($total_sql)) $total_sql = "";//20130911 Ãß°¡ if (!isset($pg)) $pg = ""; if (!isset($nuid)) $nuid = "";
/* if( isset($nuid) && $nuid !== ""){ if( !isset(${"noticeBoardUid_".$nuid}) ){
$hitSel = " select hit from mBoard_notice WHERE uid = '$nuid'"; $hitResult = mysql_query($hitSel); $hitRow = mysql_fetch_array($hitResult); $plus_hit = $hitRow[0] + 1;
$hitUp = " UPDATE mBoard_notice SET hit = '$plus_hit' WHERE uid = '$nuid' "; MYSQL_QUERY($hitUp );
setcookie("noticeBoardUid_$nuid",$nuid,0); } } */ ?>
<div class="location"> <div class="wrap"> <a href="./mall.php" class="home"><span class="screen_out">Home</span></a> <span>></span><a href="./cscenter.php"><span class="depth2">°í°´¼¾ÅÍ</span></a> </div><!-- //wrap --> </div><!-- //location -->
<div class="wrap"> <div class="contents">
<? include("./include/cscenter/sub_lnb.php"); ?>
<div class="cscenterSection"> <div class="telArticle"> <div class="left"> <p class="first"><span class="title">±¸¸Å»ó´ã</span> <span class="small">02) </span>401-5121</p> <p class="last"><span class="title">°í°´¼¾ÅÍ</span> 1566-8680</p> </div> <div class="right"> ÆòÀÏ 09:00 ~ 18:00 / Á¡½É 12:30 ~ 13: 30 (±¹/°øÈÞÀÏ ÈÞ¹«)<br /> Åä¿äÀÏ 09:00 ~ 12:30 </div> </div><!-- //telArticle-->
<div class="boardArticle"> <h3>ÀÚÁÖ¹¯´ÂÁú¹®<a href="./customerfaq.php"><img src="./images/intro/notice_more.png" alt="´õº¸±â"></a></h3> <ul> <li> <a href="./customerfaq.php?uid=100"><span class="part">õ³â°è¿</span><span class="question">ÇÁ·Î±×·¥ ¼Óµµ°¡ °©Àڱ⠴À·ÁÁ³¾î¿ä.</span></a> </li> <li> <a href="./customerfaq.php?uid=101"><span class="part">õ³â°è¿</span><span class="question">ÇÁ·Î±×·¥ÀÌ ½ÇÇàµÇÁö ¾Ê½À´Ï´Ù.</span></a> </li> <li> <a href="./customerfaq.php?uid=102"><span class="part">õ³â°è¿</span><span class="question">ÀϹÝÁ¦Ç°(·ÎÄÃ)°ú À¥¹öÀü(CS)ÀÇ Â÷ÀÌ</span></a> </li> <li> <a href="./customerfaq.php?uid=103"><span class="part">õ³â°è¿</span><span class="question">³×Æ®¿öÅ© ¿¬°áÀº ¾î¶»°Ô Çϳª¿ä?</span></a> </li> <li> <a href="./customerfaq.php?uid=104"><span class="part">õ³â°è¿</span><span class="question">ÇÁ·Î±×·¥ À缳ġ¿Í µ¥ÀÌÅÍ º¹±¸¹æ¹ý</span></a> </li> </ul> </div><!-- //boardArticle-->
<div class="boardArticle last"> <h3>°øÁö»çÇ×<a href="./customernotice.php"><img src="./images/intro/notice_more.png" alt="´õº¸±â"></a></h3> <ul> <? //-- °øÁö»çÇ× $noticeSql = " select * from mBoard_notice WHERE company = '00' or company = '01' order by uid desc limit 5 "; $noticeResult = mysql_query($noticeSql); if( mysql_num_rows($noticeResult) > 0 ){ while ($noticeRow = mysql_fetch_array($noticeResult)){ $reg_date = date('Y-m-d',$noticeRow['reg_date'] ); ?> <li> <a href="customernotice.php?nuid=<?=$noticeRow['uid'];?>"> <span class="title"><?=cutstr($noticeRow['subject'],80,"..");?></span> <span class="date"><?=$reg_date;?></span></a> </li> <? } } ?> </ul> </div><!-- //boardArticle-->
</div><!-- //cscenterSection -->
</div><!-- //contents --> </div><!-- //wrap -->
<? include("./include/common/footer.php"); ?>
|