ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/WEBCONDDB/php_CondDB/Logout.php
Revision: 1.1
Committed: Fri Jun 29 07:53:09 2007 UTC (17 years, 10 months ago) by kdziedzi
Branch: MAIN
CVS Tags: V01-01-02, V01-01-01, V1_01_00, V01-01-00, V1_00_01, HEAD
Error occurred while calculating annotation data.
Log Message:
Introducing new order in project

File Contents

# Content
1 <?php
2 /*
3 * Created on Sep 14, 2006
4 * by Katarzyna Maria Dziedziniewicz
5 * Contains:
6 *
7 */
8
9 session_start();
10 if ($_SESSION['is_logged_in']<=0)
11 {
12 $_SESSION['calling_page'] = $_SERVER['PHP_SELF'];
13 }
14 include('utils/header.php');
15
16 ///PAGE CONTENT
17 echo '<span class="main_part">';
18 ///PAGE CONTENT
19
20
21
22 echo '<br>Good bye<br>';
23
24
25 echo '</span>';
26
27 include('utils/footer.html');
28 $_SESSION['is_logged_in']=0;
29 $_SESSION['username'] = '';
30 $_SESSION = array();
31
32 ?>