TIP

일반페이지 관리자만 접속 가능하게 하기

[code]<?php 

if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 

add_stylesheet('<link rel="stylesheet" href="'.$connect_skin_url.'/style.css">', 0); 

?>[/code]를 아래로 수정 


관리자만 접속 가능

================

[code]<?php 

if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 

add_stylesheet('<link rel="stylesheet" href="'.$connect_skin_url.'/style.css">', 0); 

if ($is_admin != 'super') 

    alert('관리자만 접근 가능합니다.', '이동할 주소'); 

?>[/code]


특정레벨 이상 접속 가능

======================

[code]<?php 

if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 

// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨 

add_stylesheet('<link rel="stylesheet" href="'.$connect_skin_url.'/style.css">', 0);  


if ($member['mb_level'] < 레벨숫자)

    alert("회원레벨 몇 이상만 접근 가능합니다."); 

?>[/code]

댓글목록

등록된 댓글이 없습니다.