CLASS web

PHP

로그아웃 기능 만들기

로그아웃 기능 만들기.

로그아웃 기능을 만들어 봅시다. 이것또한 매우 간단하죠. 로그아웃 기능을 하는 페이지에 세션을 날리는 기능을 만들어 주면 끝입니다.
소스는 아래와 같죠.

htdocs/myProejct/member/logout.php

<?php
    include "../include/session.php";
    echo $_SESSION['ses_userid'].'님 로그아웃 하겠습니다.';

    unset($_SESSION['ses_userid']);

    if($_SESSION['ses_userid'] == null){
        echo '-로그아웃 완료 ';
    }
?>

로그아웃은 로그인시 발생시켰던 세션을 unset해주면 됩니다. unset(해당 세션) 그러면 세션이 날아가죠.
이렇게 로그아웃 기능을 만들어 봤습니다. ^^ 수고하셨습니다. 또 언제 php 강좌를 쓰게 될지 모르겠네요.





댓글 0개

정렬기준

PinkCoding

PinkCoding

X

PinkCoding

Web Scratch Pad

X

loading

            
            
        

컨텐츠로 돌아가기