|  |  | HOME > 호스팅 > 아사프로2.0 > 만들기 > 스킨만들기 > 접속통계스킨 | 
				 | 
				|  | 
			
				| 접속통계는 웹페이지에서 고객들의 다양한 의견을 수렴하기 위해 사용되는 기능입니다.기본적으로 제공되는 스킨을 이용하여 웹페이지를 구성할 수도 있으나 아사프로 접속통계는 기본으로 제공하는 형식 외에 사용자가 스킨을 제작하여 추가할 수 있습니다. 스킨은 접속통계목록스킨, 접속통계월별전체보기스킨, 접속통계월별보기스킨, 접속통계년별전체보기스킨, 접속통계년별보기스킨, 접속통계보기스킨 총 6페이지를 제작하여 추가하면 됩니다. | 
			
				| 1. 디자인하기 | 
			
				| 새로운 스킨을 제작하기 위해 샘플 파일을 다운로드 받습니다. | 
			
				| 다운로드 받은 파일을 원하는 디자인으로 수정합니다. | 
			
				| 스킨 샘플은 스킨이미지목록페이지에서 다운로드 받을 수 있습니다. | 
			
				| 2. HTML 코딩 및 적용 | 
			
				| (1) 접속통계 목록페이지 | 
			
				| 접속통계 목록 코딩페이지는 사용자가 접속통계목록을 보는 기능을 제공합니다. | 
			
				|  | 
			
				| 
				
					| <style> #list{background:#ffffff;}
 </style>
 <table width="<?=$set_width?>" border="0" cellpadding="4" cellspacing="0" bgcolor="#e6efff" align="center">
 <tr>
 <td>
 <table width="100%" border="0" cellpadding="2" cellspacing="1" bgcolor="#bcdaee">
 <form action="<?=$_SERVER['PHP_SELF'];?>" name="search_form" id="search_form">
 <tr bgcolor="#ffffff" height="30">
 <td align="center" width="996">오늘: <b class="number"><?=number_format($data['today_count'])?></b>명   어제: <b class="number"><?=number_format($data['yesterday_count'])?></b>명   전체:  <b class="number"><?=number_format($data['total_count'])?></b>명</td>
 <td rowspan="2" align="center" width="74"><?=selectPage($num_per_page, "onchange='document.search_form.submit()'")?></td></tr>
 <tr bgcolor="#ffffff" height="30">
 <td align="center">
 <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff">
 <tr>
 
 <td align="right">
 <input type="radio" name="search_value" value="acc_name" <?if($search_value=="acc_name"||!$search_value){echo "checked";}?>/> 접속통계 이름
 <input type="radio" name="search_value" value="acc_code" <?if($search_value=="acc_code"){echo "checked";}?>> 접속통계 코드
 <input type="text" name="search_word" value="<?=$search_word?>">
 <input type="submit" value="검색">
 </td>
 
 <td align="right">
 정렬 순서: <select name="order_value" onchange="select_order(search_form)">
 <option value="menu" <?if($order_value=="menu"){echo "selected";}?>>메뉴순</option>
 <option value="acc_name" <?if($order_value=="acc_name"){echo "selected";}?>>가나다순</option>
 <option value="create_time" <?if($order_value=="create_time"){echo "selected";}?>>생성일시순</option>
 <option value="total" <?if($order_value=="total"){echo "selected";}?>>접속자순</option>
 </select>
 <input type="checkbox" value="y" name="reversal" onclick="form_type.value=2;document.search_form.submit();" <?if($reversal=="y"){echo "checked";}?>>역순<input type='hidden' name='form_type' id="form_type" value="<?=$form_type?>"/>
 </td></tr>
 </table>
 </td></tr>
 </form>
 <tr bgcolor="#ffffff" height="26">
 <td align="center" colspan="2">
 <table border="0" cellpadding="6" cellspacing="1" width="100%" bgcolor="#bcdaee">
 <tr bgcolor="#d5e8fb" align="center">
 <td>번호</td>
 <td>생성시간</td>
 <td >접속통계 이름</td>
 <td>오늘</td>
 <td>어제</td>
 <td>이번주</td>
 <td>지난주</td>
 <td>전체</td>
 <td>보기</td>
 </tr>
 <?=$contents->webcontent('num:regdate:cate_name:today_count:yesterday_count:thisweek_count:lastweek_count:total_count:show','ko');?>
 </table>
 </td></tr>
 </table>
 </td></tr>
 </table>
 <table border="0" cellpadding="0" cellspacing="0" width="100%" class="exe_button">
 <tr><td align="center"><?=$pagings?></td></tr>
 </table>
 
 |  | 
			
				| - 스킨 변수 적용하기 | 
			
				| 
				
					| 번호 | 변수 | 설명 |  
					| 1 | $set_width | 테이블의 너비를 지정 |  
					| 2 | $_SERVER['PHP_SELF'] | 폼넘길 때 경로 |  
					| 3 | $data['today_count'] | 오늘 방문자수 |  
					| 4 | $data['yesterday_count'] | 어제 방문자수 |  
					| 5 | $data['total_count'] | 전체 방문자수 |  
					| 6 | <?=selectPage($num_per_page, "onchange='document.search_form.submit()'")?>
 | 페이지나누기 할때의 selectbox |  
					| 7 | $search_value | 검색할 때 라디오버튼의 값 |  
					| 8 | $search_word | 검색한 단어의 값 |  
					| 9 | $order_value | 검색할 때 selectbox의 값 |  
					| 10 | $reversal | 검색할 때 checkbox의 값 |  
					| 11 | $form_type | 검색할 때 form의 값 |  
					| 12 | <?=$contents->webcontent('num:regdate:cate_name: today_count:yesterday_count:thisweek_count:lastweek_count:
 total_count:show','ko');?>
 | 접속통계 목록의 내용 |  
					| 13 | $pagings | 페이지 나누기 |  | 
			
				| (2)접속통계 월별전체보기페이지 | 
			
				|  | 
			
				| 접속통계 월별전체보기 코딩페이지는 사용자가 접속통계 월별전체보기를 보는 기능을 제공합니다. | 
			
				| 
				
				| <table  cellpadding="0" cellspacing="0"  width="<?=$graph_col_width;?>" border="0"> <tr height="40">
 <td align="left" >
 <img src='<?=$ASA_MODULE_URL?>/mail/image/title_icon.gif' border='0' align='absbottom'>접속통계 보기:  <input type="text"
 value="<?=$row['cate_name'];?>" size="25" class="text_input" readonly>  <input type="button" align='absmiddle' value="접속통계선택" onclick="cate_sel1('<?=$_SERVER['PHP_SELF'];?>')"></td>
 </tr>
 </table>
 <table <?=$_con_style?> align=center width=100% border=0 cellspacing=0 cellpadding=0 bgcolor=#ffffff>
 <tr>
 <td height="40" align=center>
 <table border=0 align=center cellspacing=0 cellpadding=0 width=100%>
 <tr align=center>
 <td >
 <b><?=$year.'년'.' '.$month.'월'.' '. '접속통계'?>  </b>
 총 방문자 :
 <b><?=number_format($view_total_sum)?></b>명
 일일평균 :
 <b><?=number_format($view_total_avg)."</b>"?>명
 시간당 평균 :
 <b><?=number_format($view_hour_avg)."</b>".'명'?>
 </td>
 
 <td >
 <table cellpadding="0" cellspacing="0" border="0" width="100%">
 <tr>
 <td height="17"></td>
 <td valign="middle" width="230">
 <form name="<?=$an?>" action="<?=$_SERVER['PHP_SELF'];?>" method="get" target="_top">
 <input type="hidden" name="cate_code" value="<?=$cate_code;?>">
 <select name="year" size="1">
 <?
 echo $year_select;
 ?>
 </select> 년
 <select name="month_<?=$an?>" size="1" id='month_<?=$an?>'>
 
 <option value="y_total_data">전체</option>
 <?
 echo $month_select;
 ?>
 </select> 월
 <input type="hidden" name="statistics_mode_<?=$an?>" value="month" >
 <input type="submit" value="통계확인" style="width:70px; height:22px;" align="absmiddle">
 </form>
 </td></tr>
 </table>
 </td>
 </tr>
 </table>
 </td></tr>
 
 <tr>
 <td height="47">
 <table border=0 valign=top cellspacing=0 cellpadding=0 width=100% align=center>
 <tr>
 <td width=7% align=center><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" width=12 height=15></td>
 <td width=7%><font size=2>월</font></td>
 <td width=7% align=center><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" width=12 height=15></td>
 <td width=7%><font size=2>화</font></td>
 <td width=7% align=center><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" width=12 height=15></td>
 <td width=7%><font size=2>수</font></td>
 <td width=7% align=center><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" width=12 height=15></td>
 <td width=7%><font size=2>목</font></td>
 <td width=7% align=center><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?> " width=12 height=15></td>
 <td width=7%><font size=2>금</font></td>
 <td width=7% align=center><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" width=12 height=15></td>
 <td width=7%><font size=2>토</font></td>
 <td width=7% align=center><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" width=12 height=15></td>
 <td width=7%><font size=2>일</font></td></tr>
 </table>
 </td></tr>
 
 <tr><td>
 <table border=0 cellspacing=1 cellpadding=0 width=100%>
 <tr>
 <td align=right bgcolor='#E0EAFF' width=30>
 <table border=0 align=right width=30 cellspacing=0 cellpadding=0>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($max)?> </font></td></tr>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($half_up)?> </font></td></tr>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($half)?> </font></td></tr>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($half_down)?> </font></td></tr>
 </table>
 </td>
 
 
 
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[1]?>" width=10 height="<?=$arr_day_avg[1]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[2]?>" width=10 height="<?=$arr_day_avg[2]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[3]?>" width=10 height="<?=$arr_day_avg[3]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[4]?>" width=10 height="<?=$arr_day_avg[4]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[5]?>" width=10 height="<?=$arr_day_avg[5]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[6]?>" width=10 height="<?=$arr_day_avg[6]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[7]?>" width=10 height="<?=$arr_day_avg[7]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[8]?>" width=10 height="<?=$arr_day_avg[8]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[9]?>" width=10 height="<?=$arr_day_avg[9]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[10]?>" width=10 height="<?=$arr_day_avg[10]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[11]?>" width=10 height="<?=$arr_day_avg[11]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[12]?>" width=10 height="<?=$arr_day_avg[12]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[13]?>" width=10 height="<?=$arr_day_avg[13]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[14]?>" width=10 height="<?=$arr_day_avg[14]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[15]?>" width=10 height="<?=$arr_day_avg[15]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[16]?>" width=10 height="<?=$arr_day_avg[16]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[17]?>" width=10 height="<?=$arr_day_avg[17]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[18]?>" width=10 height="<?=$arr_day_avg[18]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[19]?>" width=10 height="<?=$arr_day_avg[19]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[20]?>" width=10 height="<?=$arr_day_avg[20]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[21]?>" width=10 height="<?=$arr_day_avg[21]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[22]?>" width=10 height="<?=$arr_day_avg[22]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[23]?>" width=10 height="<?=$arr_day_avg[23]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[24]?>" width=10 height="<?=$arr_day_avg[24]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[25]?>" width=10 height="<?=$arr_day_avg[25]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[26]?>" width=10 height="<?=$arr_day_avg[26]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[27]?>" width=10 height="<?=$arr_day_avg[27]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[28]?>" width=10 height="<?=$arr_day_avg[28]?>"></td>
 <td <?=$twenty_nine?> bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[29]?>" width=10 height="<?=$arr_day_avg[29]?>"></td>
 <td <?=$thirty?> bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[30]?>" width=10 height="<?=$arr_day_avg[30]?>"></td>
 <td <?=$thirty_one?> bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[31]?>" width=10 height="<?=$arr_day_avg[31]?>"></td>
 
 <!--날짜표시-->
 </tr><tr><td bgcolor='#E0EAFF'> </td>
 
 
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>1</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>2</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>3</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>4</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>5</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>6</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>7</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>8</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>9</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>10</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>11</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>12</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>13</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>14</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>15</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>16</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>17</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>18</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>19</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>20</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>21</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>22</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>23</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>24</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>25</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>26</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>27</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>28</font></td>
 <td <?=$twenty_nine?> align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>29</font></td>
 <td <?=$thirty?> align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>30</font></td>
 <td <?=$thirty_one?> align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>31</font></td>
 
 </tr></table>
 </td></tr>
 </table>
 <table <?=$_no_sale_style?> align="left" height="170px" width="100%"><tr><td align="center">선택한 분류가 접속통계여부를 선택하지 않았습니다.</td></tr></table>
 
 |  | 
			
				| - 스킨 변수 적용하기 | 
			
				| 
				
					| 번호 | 변수 | 설명 |  
					| 1 | $graph_col_width | 테이블의 너비를 지정 |  
					| 2 | $row['cate_name'] | 선택된 카테고리 이름 |  
					| 3 | $_SERVER['PHP_SELF'] | 현재 페이지의 경로 |  
					| 4 | $_con_style | 테이블의 보임 숨김 처리 |  
					| 5 | $year | 년도수 |  
					| 6 | $month | 월수 |  
					| 7 | $view_total_sum | 총 방문자 |  
					| 8 | $view_total_avg | 일일평균 |  
					| 9 | $view_hour_avg | 시간당 평균 |  
					| 10 | $an | form 이름 |  
					| 11 | $cate_code | 카테고리 코드 값 |  
					| 12 | $year_select | selectbox안의 년도수의 값 |  
					| 13 | $month_select | selectbox안의 월수의 값 |  
					| 14 | $max | 제일 높은 방문자수 |  
					| 15 | $half_up | 두 번째 방문자수 |  
					| 16 | $half | 세 번째 방문자수 |  
					| 17 | $half_down | 네 번째 방문자수 |  
					| 18 | $day_count[1] | 마우스가 bar이미지에 올라갈 때 나타나는 방문자수 |  
					| 19 | $arr_day_avg[1] | 첫 번째 bar 이미지의 높이 |  
					| 20 | $twenty_nine | 29일 보임 숨김 처리 |  
					| 21 | $thirty | 30일 보임 숨김 처리 |  
					| 22 | $thirty_one | 31일 보임 숨김 처리 |  
					| 23 | $_no_sale_style | 분류가 없을 경우에 나타나는 문구 보임 숨김 처리 |  | 
			
				| (3)접속통계 월별보기페이지 | 
			
				|  | 
			
				| 접속통계 월별보기 코딩페이지는 사용자가 접속통계 월별보기를 보는 기능을 제공합니다. | 
			
				| 
				
				| <br> <table  align=center border=0  cellspacing=1 cellpadding=0 width=100%>
 <tr bgcolor=#B9CCF3 height=25>
 <td align=center width=6%>시간</td>
 <td align=center width=66%><b><?=$view_month?> 월 <?=$i?> 일 <? $arr_text_weeks=$WEEKS->arrweeks('ko');echo $arr_text_weeks[$i]?></b></td>
 <td align=center width=13% colspan=2>방문자</td>
 </tr>
 
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>23</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][23]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][23]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][23]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>22</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][22]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][22]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][22]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>21</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][21]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][21]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][21]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>20</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][20]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][20]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][20]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>19</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][19]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][19]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][19]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>18</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][18]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][18]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][18]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>17</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][17]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][17]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][17]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>16</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][16]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][16]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][16]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>15</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][15]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][15]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][15]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>14</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][14]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][14]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][14]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>13</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][13]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][13]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][13]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>12</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][12]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][12]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][12]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>11</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][11]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][11]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][11]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>10</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][10]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][10]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][10]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>09</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][9]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][9]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][9]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>08</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][8]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][8]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][8]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>07</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][7]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][7]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][7]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>06</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][6]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][6]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][6]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>05</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][5]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][5]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][5]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>04</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][4]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][4]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][4]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>03</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][3]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][3]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][3]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>02</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][2]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][2]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][2]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>01</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][1]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][1]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][1]?>% </td>
 </tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center>00</td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$n_arr_hour_graph[$i][0]?>'></td>
 <td align=right width=8%><?=number_format($n_arr_hour_count[$i][0]).'명'?> </td>
 <td align=right width=5%><?=$n_arr_hour_avg[$i][0]?>% </td>
 </tr>
 </table>
 
 |  | 
			
				| - 스킨 변수 적용하기 | 
			
				| 
				
					| 번호 | 변수 | 설명 |  
					| 1 | $view_month | 월수 |  
					| 2 | $i | 일수 |  
					| 3 | $arr_text_weeks=$WEEKS->arrweeks('ko');echo $arr_text_weeks[$i] | 요일수 |  
					| 4 | $n_arr_hour_graph[$i][23] | 23시때의 그래프의 너비 |  
					| 5 | $n_arr_hour_count[$i][23] | 23시간 때의 방문자수 |  
					| 6 | $n_arr_hour_avg[$i][23] | 23시간 때의 방문자가 차지하는 비율 |  | 
			
				| (4)접속통계 년별전체보기페이지 | 
			
				|  | 
			
				| 접속통계 년별전체보기 코딩페이지는 사용자가 접속통계 년별전체보기를 보는 기능을 제공합니다. | 
			
				| 
				
				| <table  cellpadding="0" cellspacing="0"  width="<?=$graph_col_width;?>" border="0"> <tr height="40">
 <td align="left" >
 <img src='<?=$ASA_MODULE_URL?>/mail/image/title_icon.gif' border='0' align='absbottom'>접속통계 보기:  <input type="text"
 value="<?=$row['cate_name'];?>" size="25" class="text_input" readonly>  <input type="button" align='absmiddle' value="접속통계선택" onclick="cate_sel1('<?=$_SERVER['PHP_SELF'];?>')"></td>
 </tr>
 </table>
 <table <?=$_con_style?> align=center width=100% border=0 cellspacing=0 cellpadding=0 bgcolor=#ffffff>
 <tr>
 <td height=70 align=center>
 <b><?=$year.'년'. '접속통계'.'  '?></b></td>
 <td height=70 >
 접속통계 :
 <b><?=number_format($view_total_year)?></b><?='명'.'  '.
 '월평균'?> :
 <b><?=number_format($view_month_avg).'</b>'.'명'.'  <br>
 '.'일일평균'?>     :
 <b><?=number_format($view_day_avg).'</b>'.'명'.'
 '.'일일최고'?> :
 <b><?=$view_day_max?></b>  <br>
 시간당 평균 :
 <b><?=number_format($view_hour_avg).'</b>'.'명'.'
 '.'시간당 최고'?> :
 <b><?=$view_hour_max?></b>
 </td>
 
 <td>
 <table cellpadding="0" cellspacing="0" border="0" width="100%">
 <tr>
 <td height="17"></td>
 <td valign="middle" width="230">
 <form name="<?=$an?>" action="<?=$_SERVER['PHP_SELF'];?>" method="get" target="_top">
 <input type="hidden" name="cate_code" value="<?=$cate_code;?>">
 <select name="year" size="1">
 <?
 echo $year2_select;
 ?>
 </select> 년
 <select name="month_<?=$an?>" size="1" id='month_<?=$an?>'>
 <?
 echo '<option value="y_total_data">'.'전체'.'</option>';
 
 echo $month2_select;
 ?>
 </select> 월
 <input type="hidden" name="statistics_mode_<?=$an?>" value="month" >
 
 <input type="submit" value="통계확인" style="width:70px; height:22px;" align="absmiddle">
 </form>
 </td></tr>
 </table>
 
 </td>
 </tr>
 </table>
 
 <table border=0 align=center cellspacing=0 cellpadding=0 width=100%>
 <tr>
 <td>
 <table border=0 cellspacing=1 cellpadding=0 align=right width=100%>
 <tr>
 
 
 <!-- 전체 통계 그래프를 보여준다. 그래프를 출력할 값을 구한다.-->
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[1])?$total_month[1]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[1]?> border=0 alt=<?=$total_month[1]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[2])?$total_month[2]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[2]?> border=0 alt=<?=$total_month[2]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[3])?$total_month[3]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[3]?> border=0 alt=<?=$total_month[3]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[4])?$total_month[4]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[4]?> border=0 alt=<?=$total_month[4]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[5])?$total_month[5]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[5]?> border=0 alt=<?=$total_month[5]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[6])?$total_month[6]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[6]?> border=0 alt=<?=$total_month[6]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[7])?$total_month[7]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[7]?> border=0 alt=<?=$total_month[7]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[8])?$total_month[8]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[8]?> border=0 alt=<?=$total_month[8]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[9])?$total_month[9]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[9]?> border=0 alt=<?=$total_month[9]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[10])?$total_month[10]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[10]?> border=0 alt=<?=$total_month[10]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[11])?$total_month[11]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[11]?> border=0 alt=<?=$total_month[11]?>></td>
 <td  bgcolor='#EFF4FF' valign=bottom align=center height=320><?=number_format(($total_month[12])?$total_month[2]:"0")?><br><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/year/25.gif'?>" width=20 height=<?=$yarr_month_avg[12]?> border=0 alt=<?=$total_month[12]?>></td>
 </tr>
 
 <tr>
 <td align=center bgcolor='#E0EAFF' height=25>1월</td>
 <td align=center bgcolor='#E0EAFF' height=25>2월</td>
 <td align=center bgcolor='#E0EAFF' height=25>3월</td>
 <td align=center bgcolor='#E0EAFF' height=25>4월</td>
 <td align=center bgcolor='#E0EAFF' height=25>5월</td>
 <td align=center bgcolor='#E0EAFF' height=25>6월</td>
 <td align=center bgcolor='#E0EAFF' height=25>7월</td>
 <td align=center bgcolor='#E0EAFF' height=25>8월</td>
 <td align=center bgcolor='#E0EAFF' height=25>9월</td>
 <td align=center bgcolor='#E0EAFF' height=25>10월</td>
 <td align=center bgcolor='#E0EAFF' height=25>11월</td>
 <td align=center bgcolor='#E0EAFF' height=25>12월</td>
 </tr>
 </table>
 </td>
 </tr>
 </table>
 <table <?=$_no_sale_style?> align="left" height="170px" width="100%"><tr><td align="center">선택한 분류가 접속통계여부를 선택하지 않았습니다.</td></tr></table>
 
 |  | 
			
				| - 스킨 변수 적용하기 | 
			
				| 
				
					| 번호 | 변수 | 설명 |  
					| 1 | $graph_col_width | 테이블의 너비를 지정 |  
					| 2 | $row['cate_name'] | 선택된 카테고리 이름 |  
					| 3 | $_SERVER['PHP_SELF'] | 현재 페이지의 경로 |  
					| 4 | $_con_style | 테이블의 보임 숨김 처리 |  
					| 5 | $year | 년도수 |  
					| 6 | $month | 월수 |  
					| 7 | $view_total_year | 총 방문자수 |  
					| 8 | $view_month_avg | 월평균 |  
					| 9 | $view_day_avg | 일일평균 |  
					| 10 | $view_day_max | 일일최고 |  
					| 11 | $view_hour_avg | 시간당 평균 |  
					| 12 | $view_hour_max | 시간당 최고 |  
					| 13 | $an | form 이름 |  
					| 14 | $cate_code | 카테고리 코드 값 |  
					| 15 | $year2_select | selectbox안의 년도수의 값 |  
					| 16 | $month2_select | selectbox안의 월수의 값 |  
					| 17 | $total_month[1] | 1월의 방문자수 |  
					| 18 | $yarr_month_avg[1] | 1월의 bar 이미지의 높이 |  
					| 19 | $_no_sale_style | 분류가 없을 경우에 나타나는 문구 보임 숨김 처리 |  | 
			
				| (5)접속통계 년별보기페이지 | 
			
				|  | 
			
				| 접속통계 년별보기 코딩페이지는 사용자가 접속통계 년별보기를 보는 기능을 제공합니다. | 
			
				| 
				
				| <br> <table align=center border=0  cellspacing=1 cellpadding=0 width=100%>
 <tr bgcolor=#B9CCF3 height=25>
 <td align=center width=23%>날짜</td>
 <td align=center width=60%><b><?=$year.'년'.$k.'월'?></b></td>
 <td align=center width=17% colspan=2>방문자</td></tr>
 <tr bgcolor=#E0EAFF height=18 <?=$thirty_one?>>
 <td align=center><?
 $yarr_weekss=$yWEEKS->yarrweeks('ko');
 echo
 $year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",31).'일'." (".$yarr_weekss[31].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][31]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][31]?$yarr_day_count[$k][31]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][31]?$yarr_day_avg[$k][31]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18 <?=$thirty?>>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",30).'일'." (".$yarr_weekss[30].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][30]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][30]?$yarr_day_count[$k][30]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][30]?$yarr_day_avg[$k][30]:"0"?>% </td></tr>
            <tr bgcolor=#E0EAFF height=18 <?=$twenty_nine?>>
                    <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",29).'일'." (".$yarr_weekss[29].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][29]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][29]?$yarr_day_count[$k][29]:"0").'명'?> </td>
                    <td align=right width=7%><?=$yarr_day_avg[$k][29]?$yarr_day_avg[$k][29]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",28).'일'." (".$yarr_weekss[28].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][28]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][28]?$yarr_day_count[$k][28]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][28]?$yarr_day_avg[$k][28]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",27).'일'." (".$yarr_weekss[27].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][27]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][27]?$yarr_day_count[$k][27]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][27]?$yarr_day_avg[$k][27]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",26).'일'." (".$yarr_weekss[26].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][26]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][26]?$yarr_day_count[$k][26]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][26]?$yarr_day_avg[$k][26]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",25).'일'." (".$yarr_weekss[25].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][25]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][25]?$yarr_day_count[$k][25]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][25]?$yarr_day_avg[$k][25]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",24).'일'." (".$yarr_weekss[24].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][24]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][24]?$yarr_day_count[$k][24]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][24]?$yarr_day_avg[$k][24]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",23).'일'." (".$yarr_weekss[23].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][23]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][23]?$yarr_day_count[$k][23]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][23]?$yarr_day_avg[$k][23]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",22).'일'." (".$yarr_weekss[22].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][22]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][22]?$yarr_day_count[$k][22]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][22]?$yarr_day_avg[$k][22]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",21).'일'." (".$yarr_weekss[21].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][21]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][21]?$yarr_day_count[$k][21]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][21]?$yarr_day_avg[$k][21]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",20).'일'." (".$yarr_weekss[20].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][20]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][20]?$yarr_day_count[$k][20]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][20]?$yarr_day_avg[$k][20]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",19).'일'." (".$yarr_weekss[19].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][19]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][19]?$yarr_day_count[$k][19]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][19]?$yarr_day_avg[$k][19]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",18).'일'." (".$yarr_weekss[18].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][18]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][18]?$yarr_day_count[$k][18]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][18]?$yarr_day_avg[$k][18]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",17).'일'." (".$yarr_weekss[17].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][17]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][17]?$yarr_day_count[$k][17]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][17]?$yarr_day_avg[$k][17]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",16).'일'." (".$yarr_weekss[16].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][16]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][16]?$yarr_day_count[$k][16]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][16]?$yarr_day_avg[$k][16]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",15).'일'." (".$yarr_weekss[15].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][15]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][15]?$yarr_day_count[$k][15]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][15]?$yarr_day_avg[$k][15]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",14).'일'." (".$yarr_weekss[14].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][14]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][14]?$yarr_day_count[$k][14]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][14]?$yarr_day_avg[$k][14]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",13).'일'." (".$yarr_weekss[13].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][13]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][13]?$yarr_day_count[$k][13]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][13]?$yarr_day_avg[$k][13]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",12).'일'." (".$yarr_weekss[12].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][12]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][12]?$yarr_day_count[$k][12]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][12]?$yarr_day_avg[$k][12]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",11).'일'." (".$yarr_weekss[11].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][11]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][11]?$yarr_day_count[$k][11]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][11]?$yarr_day_avg[$k][11]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",10).'일'." (".$yarr_weekss[10].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][10]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][10]?$yarr_day_count[$k][10]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][10]?$yarr_day_avg[$k][10]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",9).'일'." (".$yarr_weekss[9].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][9]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][9]?$yarr_day_count[$k][9]:"0").'명'?> </td>
                    <td align=right width=7%><?=$yarr_day_avg[$k][9]?$yarr_day_avg[$k][9]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",8).'일'." (".$yarr_weekss[8].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][8]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][8]?$yarr_day_count[$k][8]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][8]?$yarr_day_avg[$k][8]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",7).'일'." (".$yarr_weekss[7].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][7]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][7]?$yarr_day_count[$k][7]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][7]?$yarr_day_avg[$k][7]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",6).'일'." (".$yarr_weekss[6].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][6]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][6]?$yarr_day_count[$k][6]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][6]?$yarr_day_avg[$k][6]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",5).'일'." (".$yarr_weekss[5].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][5]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][5]?$yarr_day_count[$k][5]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][5]?$yarr_day_avg[$k][5]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",4).'일'." (".$yarr_weekss[4].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][4]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][4]?$yarr_day_count[$k][4]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][4]?$yarr_day_avg[$k][4]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",3).'일'." (".$yarr_weekss[3].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][3]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][3]?$yarr_day_count[$k][3]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][3]?$yarr_day_avg[$k][3]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",2).'일'." (".$yarr_weekss[2].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][2]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][2]?$yarr_day_count[$k][2]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][2]?$yarr_day_avg[$k][2]:"0"?>% </td></tr>
 <tr bgcolor=#E0EAFF height=18>
 <td align=center><?=$year.'년'.sprintf("%02d",$k).'월'.sprintf("%02d",1).'일'." (".$yarr_weekss[1].")"?></td>
 <td align=left bgcolor='#EFF4FF'><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/garo/5.gif'?>" height=10 width='<?=$yarr_day_graph[$k][1]?>'></td>
 <td align=right width=10%><?=number_format($yarr_day_count[$k][1]?$yarr_day_count[$k][1]:"0").'명'?> </td>
 <td align=right width=7%><?=$yarr_day_avg[$k][1]?$yarr_day_avg[$k][1]:"0"?>% </td></tr>
 </table>
 
 |  | 
			
				| - 스킨 변수 적용하기 | 
			
				| 
				
					| 번호 | 변수 | 설명 |  
					| 1 | $year | 년도수 |  
					| 2 | $k | 월수 |  
					| 3 | $thirty_one | 31일의 한줄을 보임 숨김처리 |  
					| 4 | $yarr_weekss=$yWEEKS->yarrweeks('ko'); | 요일수 |  
					| 5 | $yarr_weekss[31] | 31일의 요일수 |  
					| 6 | $yarr_day_graph[$k][31] | 31일에 그래프의 넓이 |  
					| 7 | $yarr_day_count[$k][31] | 31일의 방문자수 |  
					| 8 | $yarr_day_avg[$k][31] | 31일의 방문자수의 비율 |  | 
			
				| (6) 접속통계보기스킨 | 
			
				|  | 
			
				| 접속통계보기스킨코딩페이지는 사용자가 접속통계목록페이지에서 ‘보기‘를 클릭하면 볼 수 있는 페이지입니다. | 
			
				| 
				
				| <meta http-equiv="Content-Type" content="text/html; charset=<?=$charsets?>" /> <title>접속통계보기</title>
 <table  align=center width=100% border=0 cellspacing=0 cellpadding=0 bgcolor=#ffffff>
 <tr>
 <td height=40 align=center>
 <table border=0 align=center cellspacing=0 cellpadding=0 width=100%>
 <tr align=center>
 <td >
 <b><?=$year.'년'.' '.$month.'월'.' '.'접속통계'?>  </b>
 <?='총 방문자'?> :
 <b><?=number_format($view_total_sum)?></b><?='명'?>
 <?='일일평균'?> :
 <b><?=number_format($view_total_avg)?></b><?='명'?>
 <?='시간당평균'?> :
 <b><?=number_format($view_hour_avg)?></b><?='명'?></td></tr></table></td></tr>
 
 <tr><td>
 <table border=0 cellspacing=1 cellpadding=0 width=100%>
 <tr>
 <td align=right bgcolor='#E0EAFF' width=30>
 <table border=0 align=right width=30 cellspacing=0 cellpadding=0>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($max)?> </font></td></tr>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($half_up)?> </font></td></tr>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($half)?> </font></td></tr>
 <tr><td align=right height=80 valign=top><font size=2 color=blue><?=number_format($half_down)?> </font></td></tr>
 </table>
 </td>
 
 
 
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[1]?>" width=10 height="<?=$arr_day_avg[1]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[2]?>" width=10 height="<?=$arr_day_avg[2]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[3]?>" width=10 height="<?=$arr_day_avg[3]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[4]?>" width=10 height="<?=$arr_day_avg[4]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[5]?>" width=10 height="<?=$arr_day_avg[5]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[6]?>" width=10 height="<?=$arr_day_avg[6]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[7]?>" width=10 height="<?=$arr_day_avg[7]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[8]?>" width=10 height="<?=$arr_day_avg[8]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[9]?>" width=10 height="<?=$arr_day_avg[9]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[10]?>" width=10 height="<?=$arr_day_avg[10]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[11]?>" width=10 height="<?=$arr_day_avg[11]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[12]?>" width=10 height="<?=$arr_day_avg[12]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[13]?>" width=10 height="<?=$arr_day_avg[13]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[14]?>" width=10 height="<?=$arr_day_avg[14]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[15]?>" width=10 height="<?=$arr_day_avg[15]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[16]?>" width=10 height="<?=$arr_day_avg[16]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[17]?>" width=10 height="<?=$arr_day_avg[17]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[18]?>" width=10 height="<?=$arr_day_avg[18]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[19]?>" width=10 height="<?=$arr_day_avg[19]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[20]?>" width=10 height="<?=$arr_day_avg[20]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[21]?>" width=10 height="<?=$arr_day_avg[21]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[22]?>" width=10 height="<?=$arr_day_avg[22]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[23]?>" width=10 height="<?=$arr_day_avg[23]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[24]?>" width=10 height="<?=$arr_day_avg[24]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[25]?>" width=10 height="<?=$arr_day_avg[25]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[26]?>" width=10 height="<?=$arr_day_avg[26]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[27]?>" width=10 height="<?=$arr_day_avg[27]?>"></td>
 <td bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[28]?>" width=10 height="<?=$arr_day_avg[28]?>"></td>
 <td <?=$twenty_nine?> bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[29]?>" width=10 height="<?=$arr_day_avg[29]?>"></td>
 <td <?=$thirty?> bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[30]?>" width=10 height="<?=$arr_day_avg[30]?>"></td>
 <td <?=$thirty_one?> bgcolor='#EFF4FF' valign=bottom align=center height=330><img src="<?=$ASA_LIB_IMAGE_URL.'/graph/week/5.gif'?>" border=0 alt="<?=$day_count[31]?>" width=10 height="<?=$arr_day_avg[31]?>"></td>
 
 <!--날짜표시-->
 </tr><tr><td bgcolor='#E0EAFF'> </td>
 
 
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>1</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>2</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>3</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>4</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>5</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>6</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>7</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>8</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>9</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>10</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>11</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>12</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>13</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>14</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>15</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>16</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>17</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>18</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>19</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>20</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>21</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>22</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>23</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>24</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>25</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>26</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>27</font></td>
 <td align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>28</font></td>
 <td <?=$twenty_nine?> align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>29</font></td>
 <td <?=$thirty?> align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>30</font></td>
 <td <?=$thirty_one?> align=center height=20 bgcolor='#E0EAFF'><font style='font-size:9pt'>31</font></td>
 
 </tr></table>
 </td></tr>
 <tr height="40"><td align="center">
 <input type="button" value="닫 기"  onclick="window.close()">
 </td></tr>
 </table>
 
 |  | 
			
				| - 스킨 변수 적용하기 | 
			
				| 
				
					| 번호 | 변수 | 설명 |  
					| 1 | $charsets | 자동으로 언어셋을 넣어줌 |  
					| 2 | $year | 현재 년도수 |  
					| 3 | $month | 현재 월수 |  
					| 4 | $view_total_sum | 총 방문자 |  
					| 5 | $view_total_avg | 일일평균 방문자수 |  
					| 6 | view_hour_avg | 시간당 평균 방문자수 |  
					| 7 | $max | 제일 높은 방문자수 |  
					| 8 | $half_up | 두 번째 방문자수 |  
					| 9 | $half | 세 번째 방문자수 |  
					| 10 | $half_down | 네 번째 방문자수 |  
					| 11 | $day_count[1] | 마우스가 bar이미지에 올라갈 때 나타나는 방문자수 |  
					| 12 | $arr_day_avg[1] | 첫 번째 bar 이미지의 높이 |  
					| 13 | $twenty_nine | 29일 보임 숨김 처리 |  
					| 14 | $thirty | 30일 보임 숨김 처리 |  
					| 15 | $thirty_one | 31일 보임 숨김 처리 |  |