관리자화면에서 총회원수 조절... 정보
관리자화면에서 총회원수 조절...
본문
오류가 나는곳의 주소를 알려주시면 더 빠르고 정확하게 답변 받을 수 있습니다.
오류 주소 :
그누보드 관리자화면에서 총회원수 조정할 수 있나요?
초기 가입 총회원수를 늘이거나 원하는 숫자로 시작하게 할 수 있는지..
예를들면, 총회원수가 100명이면.. 앞에 1만단위를 더 넣어서 10,100명으로
보이게 할 수 있는지..
궁금해서요. 알려주시면 감사하겠습니당.^^
오류 주소 :
그누보드 관리자화면에서 총회원수 조정할 수 있나요?
초기 가입 총회원수를 늘이거나 원하는 숫자로 시작하게 할 수 있는지..
예를들면, 총회원수가 100명이면.. 앞에 1만단위를 더 넣어서 10,100명으로
보이게 할 수 있는지..
궁금해서요. 알려주시면 감사하겠습니당.^^
댓글 전체
가능하죠 ㅋ
g4/admin/index.php 파일을 열어 보시면요
<?=subtitle("신규가입회원 {$new_member_rows}건", "./member_list.php");?>
<table width=100%>
<tr>
<td width=50% align=left><?//=$listall?> (총회원수 : <?=number_format($total_count)?>, <font color=orange>차단 : <?=number_format($intercept_count)?></font>, <font color=crimson>탈퇴 : <?=number_format($leave_count)?></font>)</td>
<td width=50% align=right></td>
</tr>
</table>
위의 부분중에 (총회원수 : <?=number_format($total_count)?>, 이곳에요
(총회원수 : 10,<?=number_format($total_count)?>, 이렇게 넣어주시면 됩니다. ㅋ
g4/admin/index.php 파일을 열어 보시면요
<?=subtitle("신규가입회원 {$new_member_rows}건", "./member_list.php");?>
<table width=100%>
<tr>
<td width=50% align=left><?//=$listall?> (총회원수 : <?=number_format($total_count)?>, <font color=orange>차단 : <?=number_format($intercept_count)?></font>, <font color=crimson>탈퇴 : <?=number_format($leave_count)?></font>)</td>
<td width=50% align=right></td>
</tr>
</table>
위의 부분중에 (총회원수 : <?=number_format($total_count)?>, 이곳에요
(총회원수 : 10,<?=number_format($total_count)?>, 이렇게 넣어주시면 됩니다. ㅋ

위의 방법으로 하게되면
회원이 1000명일 경우에는 10,1,000 으로 나오겠네요..
<?=number_format($total_count)+10000;?> 으로 하세요~
회원이 1000명일 경우에는 10,1,000 으로 나오겠네요..
<?=number_format($total_count)+10000;?> 으로 하세요~
회원수조절