문의드립니다.
본문
안녕하세요.
메인페이지 로그인전 와 로그인후 페이지 다르게 출력하게 하려면 어떻게 하면되나요?
예) 로그인전 index.php 화면 로그인후 index1.php 화면 보이게요
답변 2
index.php 상단에
<?php
include_once('./_common.php');
if ($is_member){
header('Location: index1.php');
exit;
}
$index_file = ($is_member) ? 'index1' : 'index';
include ~~~ $index_file.php
답변을 작성하시기 전에 로그인 해주세요.